function winop(imgurl, width, height)
{
    title = "window";
    im = window.open('', 'win','top=40,left=40,width='+width+',height='+height+', scrollbars=no, menu=no,status=no,resizable=no');
    im.focus();
    im.document.open ("text/html");
    im.document.write ('<html><title>'+title+'</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff><table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td align=center><img src='+imgurl+' width='+width+' height='+height+'></td></tr></table></body></html>');
    im.document.close ();
}

 function OverImage1() {
	document.getElementById("newLimg").style.display='block';
	document.getElementById("newLimg").style.position='static'; 
 
 	document.getElementById("more").style.visibility='hidden';
	document.getElementById("more").style.position='absolute';
 	
 	document.getElementById("more2").style.visibility='visible';
	document.getElementById("more2").style.position='static';
 } 
 
 function OverImage2() {
 	document.getElementById("newLimg").style.display='none';
	document.getElementById("newLimg").style.position='absolute';
		
 	document.getElementById("more2").style.visibility='hidden';
	document.getElementById("more2").style.position='absolute';
 	
 	document.getElementById("more").style.visibility='visible';
	document.getElementById("more").style.position='static';
 } 

