<!--
function pano(mylink, windowname)
{
if (! window.focus) return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
   
window.open(href,windowname,'resizable=0,screenX=200,screenY=100,top=100,left=200,width=480,height=335,scrollbars=no');
return false;
}
//-->
