<!--
var glossarywin = new Object  ;
function interactive(file)
{
 window.open(file,"new_win","resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=yes, width=500,height=400,top=0,left=0")
}
function tour_window(file)
{
 window.open(file,"new_win","resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=yes, width=500,height=400,top=0,left=0")
}

function glossWin(gloss)
{
  document.cookie = "gloss_word=a" ;
  document.cookie = "gloss_wordid=0" ;
 
	var t;
	t = window.screen.availHeight;
    t = t - 490;
    glossarywin = window.open(gloss,"new_win","resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,width=450,height=450,top= "+ t +",left=0")
    glossarywin.focus();
 
}

function glossaryclose()
{
 if (glossarywin.closed == false){
   glossarywin.close();
 }  
}



function floatLayer(iX,iY,id){
   var L=dD.getElementById?dD.getElementById(id):dD.all?dD.all[id]:dD.layers[id];		
   this[id+'O']=L;
   if(dD.layers)
      L.style=L;
      L.nX=L.iX=iX;
      L.nY=L.iY=iY;
      L.P=function(x,y) {
         this.style.left=x+px;
         this.style.top=y+px;         
      };
      L.Fm=function() {
      var pX, pY;	
	  pX=(this.iX >=0)?0:nn?innerWidth:nn&&dH.clientWidth?dH.clientWidth:dB.clientWidth;	
	  pY=nn?pageYOffset:nn&&dH.scrollTop?dH.scrollTop:dB.scrollTop;	
	  if(this.iY<0)
	     pY+=nn?innerHeight:nn&&dH.clientHeight?dH.clientHeight:dB.clientHeight;	
	  this.nX+=.1*(pX+this.iX-this.nX);this.nY+=.1*(pY+this.iY-this.nY);
	  this.P(this.nX,this.nY);
      setTimeout(this.id+'O.Fm()',1);}; //increase this value means increase the speed
      return L;
}


//-->