var myImg;

function showImage(img, w, h){
	myImg = window.open ('', 'myImage', 'noresize, width=' + w + ', height=' + h);
	myImg.document.write ('<html>');
	myImg.document.write ('<head>');
	myImg.document.write ('<title>O\'NEILL</title>');
	myImg.document.write ('<style type="text/css">* { border: 0px; margin: 0px; padding: 0px; }</style>');
	myImg.document.write ('</head>');
	myImg.document.write ('<body>');
	myImg.document.write ('<img border="0" src="' + img + '"');
	myImg.document.write ('</body>');
	myImg.document.write ('</html>');
}
