// window open
function wOpen(img)
{
	w = open("",'image','width=150,height=150,toolbar=no,scrollbars=no,resizable=no'); 
	w.document.write("<html><head><title>Restofair</title></head>"); 
	w.document.write('<script type="text/javascript">'); 
	w.document.write("function checksize(){if (document.images[0].complete ){window.resizeTo(document.images[0].width + 10, document.images[0].height + 50);}else{setTimeout('checksize()',250)}}"); 
	w.document.write('</script>'); 
	w.document.write('<body onload="checksize()" onblur="window.close()" onclick="window.close()" leftMargin="0" topMargin="0" marginwidth="0" marginheight="0">');
	w.document.write("<div style='width:100%;'> ");
	w.document.write("<img src='" + img + "' border=0 alt=''>"); 
	w.document.write("</div>");
	w.document.write("</body></html>"); 
	w.document.close(); 
	return false;	
}

