<!--


var winW = 780;
var winH = 460;



winH=screen.height;




function getFlashMovie(movieName) {   
 
     var isIE = navigator.appName.indexOf("Microsoft") != -1; 
     
return (isIE) ? window[movieName] : document[movieName];  

}  



function getAddress(){
  
var mytest=location.href;
  
return mytest ;

}



function sethash(href){
  
 location.href = href;

}





function popitup(url) {
	
  newwindow=window.open(url,'name','height='+winH+',width=780,resizable=yes,status=no,scrollbars=yes');
     mywindow.moveTo(0,0);

  document.documentElement.style.overflow = "auto";
	
  if (window.focus) {
    newwindow.focus()
  }
	
  return false;


}

function popitup2(url) {
	
   newwindow=window.open(url,'name','height='+winH+',width=420,resizable=yes,status=no,scrollbars=yes');
       mywindow.moveTo(0,0);

   document.documentElement.style.overflow = "auto";
	
   if (window.focus) {
     newwindow.focus()
   }
	
   return false;


}


function drawdiv(content){
   
e=document.getElementById('OverDiv');
   
e.innerHTML = content;

}



function moveDiv(top,left){
  
e=document.getElementById('OverDiv');
  
e.style.top=top+'px';
  e.style.left=left+'px';


}



-->