// JavaScript Document
function openPopup (image, w,h) { 
coin=window.open("","coin","width="+w+",height="+h+",left=100,top=50,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no"); 
coin.document.writeln('<html><BODY BGCOLOR="#FFFFFF" leftMargin=0 topMargin=0 rightMargin=0 bottomMargin=0>'); 
coin.document.writeln('<img src="img/'+image+'.jpg">'); 
coin.document.write('</body></html>'); 
coin.document.close(); 
} 