function show(obj)
{
obj.className='hmenu_active';	
}

function hide(obj)
{
obj.className='hmenu_normal';	
}

function JavaOpen(project,w,h) 
{
l=(screen.width-w)/2;
t=(screen.height-h)/2;
window.open(project,'new','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=n o,copyhistory=no,scrollbars=yes,width='+w+',height='+h+',top='+t+',left='+l);
}

function z(name,w,h,title){l=(screen.width-w)/2; t=(screen.height-h)/2; q=w-2;g=h-2; obj=open("", "404", "top="+t+", left="+l+", width="+q+", height="+g+", status=no, toolbar=no, menubar=no"); obj.document.write("<title>"+title+"</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="+name+" width="+w+" height="+h+ "></body>"); obj.document.close(); }