function vCenter(status) {
var viewportheight, top;
var env = document.getElementById('envelope');

if (typeof window.innerHeight != 'undefined'){
	viewportheight = window.innerHeight;
} else {
	viewportheight = document.body.clientHeight;
}
top = Math.abs((viewportheight-515)/2);
env.style.paddingTop = top.toString() + "px";
if (status!='loaded') env.style.visibility='visible';
}

function show_im(im_path,im_name,x,y)
{
  im_src = '.'+im_path+im_name;
  if (window.newwin) newwin.close();
  newwin=window.open('_blank','newwin','width='+x+',height='+y+',menubar=no, status=no');
  newwin.document.open();
  newwin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">');
  newwin.document.write('<head>');
  newwin.document.write('<title>http://hybnerovamarie.eu</title>');
  newwin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
  newwin.document.write('</head>');
  newwin.document.write('<body bgcolor="#000000" style="margin:auto;_text-align:center;background-image: url(../gph/bkgr.gif); background-repeat: repeat-x; background-position: top;">');
  newwin.document.write('<div style="text-align:center;">');
  newwin.document.write('<a style="font-family:arial;color:#000000;" href="javascript:window.close()">');
  newwin.document.write('<img src="./phplib/getwm.php?sg='+im_path+'&amp;im='+im_name+'" alt="" style="border:none;"/>');
  newwin.document.write('</a></div>');
  newwin.document.write('</body></html>');
  newwin.moveTo(screen.width/2-x/2,screen.height/2-y/2);
}
