function open_window(link,w,h)
{
		var newWin;		
		newWin = window.open('','newWin',"width="+w+"px, height="+h+"px, scrollbars=no, status=no, location=no, menubar=no, resizable=no, toolbar=no, left=0, top=0").document;
		newWin.write('<html><head><title>SEALINE</title></head><body style="margin:0px; "><img src="'+link+'" style="cursor:pointer;" onClick="window.close();"></body></html>');				
		newWin.close();		
		
}
function open_size(link,w,h)
{
		var newWin;		
		newWin = window.open('','newWin',"width="+w+"px, height="+h+"px, scrollbars=yes, status=no, location=no, menubar=no, resizable=no, toolbar=no, left=0, top=0").document;
		newWin.write('<html><head><title>SEALINE</title></head><body style="margin:0px; "><img src="'+link+'" style="cursor:pointer;" onClick="window.close();"></body></html>');				
		newWin.close();
		
}
function open_sert(link,w,h)
{
		var newWin;		
		newWin = window.open('','newWin',"width="+w+"px, height="+h+"px, scrollbars=yes, status=no, location=no, menubar=no, resizable=no, toolbar=no, left=0, top=0").document;
		newWin.write('<html><head><title>SEALINE</title></head><body style="margin:0px; "><img src="'+link+'" style="cursor:pointer;" onClick="window.close();"></body></html>');				
		newWin.close();
		
}
