function show (image, w, h){
coin=window.open("","coin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h+"");
coin.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
coin.document.writeln('<html>');
coin.document.writeln('<head>');
coin.document.writeln('<title>Picture</title>');
coin.document.writeln('<meta http-equiv="Copyright" content="Orangelio Studio">');
coin.document.writeln('<meta http-equiv="Reply-to" content="lionet@one.lv">');
coin.document.writeln('</head>');
coin.document.writeln('<body background="" bgcolor="" marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">');
coin.document.write('<a href="javascript:window.close();">');
coin.document.writeln('<img border="0" src="'+image+'" width='+w+' height='+h+'>');
coin.document.write('</a></body></html>');
coin.document.close();
}

