var z_newWin = null;

function openurl (sPic,w,h,alt) {

var t = (screen.height - h) / 2;
var l = (screen.width - w) / 2;

h = 280;

var winArgs = 'height=' + h + ',width=' + w + ',top=' + t + ',left=' + l + 'status=no,toolbar=no,menubar=no,location=no,fullscreen=no,resizeble=no,directories=no';
var sCont = '<html>\n\n<title>' + alt + '</title>\n\n<body scroll=NO topmargin=0 leftmargin=0>\n\n<img border=0 alt="' + alt + '"src="' + sPic + '">\n\n</body></html>\n'

if(z_newWin != null) z_newWin.close();

z_newWin = window.open(sPic, null, winArgs);

z_newWin.document.open();
z_newWin.document.write(sCont);
z_newWin.document.close();

return false;

}