function openCentered(x,w,h)
{
 var l = (screen.width/2)-(w/2);
 var t = (screen.height/2)-(h/2);
 var x;
 if (x != '#')
 {
	newWindow = window.open("","newWindow","width="+w+",height="+h+",left="+l+",top="+t);
	newWindow.document.open();
	newWindow.document.write('<html><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+x+' width='+w+' height='+h+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
 }
}

function openRight(x,w,h)
{
 var x,w,h;
 var l = (screen.width)-(w+12);
 var t = 0;
 if (x != '#')
 {
	newWindow = window.open("","newWindow","width="+w+",height="+h+",left="+l+",top="+t);
	newWindow.document.open();
	newWindow.document.write('<html><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+x+' width='+w+' height='+h+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
 }
}

