//********************************//
//                                //
//		Custom JS image opener			//
//                                //
//		Programmed by jepegrafik.		//
//		http://www.jepegrafik.com		//
//                                //
//********************************//
function openImg(file) {
	width = 120;
	height = 100;
	var Xpos = (screen.width - width)/2;
	var Ypos = ((screen.height - height)/2) - 20;
	tmpWindow = window.open('about:blank','_blank','left='+Xpos+',ScreenX='+Xpos+',top='+Ypos+',ScreenY='+Ypos+',width='+width+',height='+height+',resizable=no,scrollbars=no');
	tmpWindow.document.write("<html><head><title>////// graphasel /////</title><script language='JavaScript' src='script.js'></script></head><body bgcolor='#FFFFFF' marginwidth='0' marginheight='0' leftmargin='0' topmargin='0'><table width='120' cellspacing='0' cellpadding='0' border='0'><tr><td width='100' align='left' valign='top'><img src='images/img_load.gif' width='120' height='100' border='0'></td><td align='center' valign='middle'><img onLoad='javascript:finalImg(this)' src="+file+" border='0'></td></table></body></html>");
	tmpWindow.document.close();

}
function finalImg(img) {
	var nw = img.width + 20;
	var nh = img.height + 20;
	var x = (screen.width - nw)/2;
	var y = ((screen.height - nh)/2) - 20;
	finalWindow = window.open('about:blank','_blank','left='+x+',screenX='+x+',top='+y+',screenY='+y+',width='+nw+',height='+nh+',resizable=no,scrollbars=no');
	finalWindow.document.write("<html><head><title>////// graphasel /////</title></head><body bgcolor='#252525' marginwidth='0' marginheight='0' leftmargin='0' topmargin='0'><table width="+nw+" cellspacing='0' cellpadding='0' border='0'><tr><td width="+nw+" height="+nh+" align='center' valign='middle'><a href='javascript:window.close()'><img src="+img.src+" width="+img.width+" height="+img.height+" border='0' alt='Bez&aacute;r&aacute;s'></a></td></table></body></html>");
	finalWindow.document.close();
	window.close();

}