// JavaScript Document
function showp(obr,w,h)
{
var NewWin = window.open('','','width=' +w+ ',height=' +h+ 'screenX=100,screenY=100,left=100,top=100');
with (NewWin.document){
open();        
write ('<html><head><title>Bild</title></head>');
write ('<body topmargin="0" leftmargin="0">');
write ('<img src="'+obr+'">');
write ('</body></html>');
close();
}}
