
function popupglo (filename) {
	width = screen.availWidth -20;
   	height = screen.availHeight  -20;
	// valami= window.opener.close();
  eval("win = window.open('"+filename+"', 'main_window', 'left=0,top=0,toolbar=0,scrollbars=0,location=0,status=0,resizable=0,menubar=0,width="+width+",height="+height+"');");
}

function popupglo2 (filename, w, h, cim) {
	width = w;
   	height = h;
  eval("abk = window.open('', '', 'left=0,top=0,toolbar=0,scrollbars=0,location=0,status=0,resizable=0,menubar=0,width="+width+",height="+height+"');");
  abk.document.write('<HTML><TITLE>'+cim+'</TITLE>');
  abk.document.write('<BODY bgcolor=#000000 leftmargin="0" topmargin="0"><CENTER>');
  abk.document.write("<IMG src='"+filename+"'>");
  abk.document.write('</CENTER></BODY></HTML>');
}