//ALBERT'S POSES
if (document.images)
   {
     image_off= new Image(139,136);
     image_off.src="/images/help/albert_img.png";  

     image2= new Image(139,136);
     image2.src="/images/help/albertPointLeft_img.png";
     
     image3= new Image(139,136);
     image3.src="/images/help/albertPointDown_img.png";
     
     image4= new Image(139,136);
     image4.src="/images/help/albertPointBubble_img.png";
   }

function change1(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }
 
//SPEECH BUBBLE
function ShowPicture(id,Source) {
     if (document.images){
        if (Source=="1"){
            change1('pic1','image4');
            if (document.layers) document.layers[''+id+''].visibility = "show" 
            else if (document.all) document.all[''+id+''].style.visibility = "visible" 
            else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible" 
        } else if (Source=="0"){ 
            change1('pic1','image_off');
            if (document.layers) document.layers[''+id+''].visibility = "hide" 
            else if (document.all) document.all[''+id+''].style.visibility = "hidden" 
            else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden" 
        } 
    }
} 
