function ImageWindow2(theURL,ImgName,xSize,ySize) {		//popUp Image V2.2
	if (ImgName == '') ImgName = theURL.substring(theURL.lastIndexOf('/')+1,theURL.lastIndexOf('.')).replace(/_/," ");
	var Imgsrc = theURL;
	var popup = window.open(Imgsrc, 'Kép', 'width='+xSize+',height='+ySize+',resizable=yes');
	popup.resizeTo(xSize+12,ySize+31);						//noch zu ändern! 
	popup.document.write('<html><head><title>');
	popup.document.write(ImgName);
	popup.document.write('</title></head>');
	popup.document.write('<BODY leftmargin="0" topmargin="0">');
	popup.document.write('<img src=" '+Imgsrc+' " alt="" border="">');
	popup.document.write('</body></html>');
	popup.focus();
  if( navigator.appName.substring(0,8) == "Netscape" ){	//sonst sieht man in NS garnix!
    popup.location = Imgsrc;
	popup.resizeTo(xSize+15,ySize+15);
  }
}

function ImageFullScreen(theURL,ImgName,ImgText,xSize,ySize) {		//Full Image V2.2
  if (ImgName == '') ImgName = theURL.substring(theURL.lastIndexOf('/')+1,theURL.lastIndexOf('.')).replace(/_/," ");
	var Imgsrc = theURL;
	var popup = window.open(Imgsrc, 'Kép', 'fullscreen=1, left=0, top=0, width='+screen.width+', height='+(screen.height-100));	//,'width='+xSize+',height='+ySize+',
	popup.document.write('<html><head><title>'+ImgName+'</title>');
	popup.document.write('<link rel="stylesheet" href="http://www.zalaszam.hu/edit/edit.css" type="text/css">');
	popup.document.write('</head><BODY leftmargin="0" topmargin="4">');
	popup.document.write('<div align="center"> <br/><a href="#" onclick="javascript:window.close();"><img src=" '+Imgsrc+' " class="pic"></a> <br/>');
	popup.document.write('<span class="galltitle">'+ImgName+'</span><br/><span class="galltext">'+ImgText+'</span></div>');
	popup.document.write('<p align="center"><a href="javascript:window.close();"><img src="http://www.zalaszam.hu/edit/images/balranyil.jpg" width="45" height="40" border="0"></a></p>');
	popup.document.write('</body></html>');
	popup.focus();
}
function ImageFullScreenBlack(theURL,ImgName,ImgText,xSize,ySize) {		//Full Image V2.2
  if (ImgName == '') ImgName = theURL.substring(theURL.lastIndexOf('/')+1,theURL.lastIndexOf('.')).replace(/_/," ");
	var Imgsrc = theURL;
	var popup = window.open(Imgsrc, 'Kép', 'fullscreen=1, left=0, top=0, width='+screen.width+', height='+(screen.height-100));	//,'width='+xSize+',height='+ySize+',
	popup.document.write('<html><head><title>'+ImgName+'</title>');
	popup.document.write('<link rel="stylesheet" href="http://www.zalaszam.hu/edit/edit.css" type="text/css">');
	popup.document.write('</head><BODY leftmargin="0" topmargin="4">');
	popup.document.write('<div align="center"> <br/><a href="#" onclick="javascript:window.close();"><img src=" '+Imgsrc+' " class="picblack"></a> <br/>');
	popup.document.write('<span class="galltitle">'+ImgName+'</span><br/><span class="galltext">'+ImgText+'</span></div>');
	popup.document.write('<p align="center"><a href="javascript:window.close();"><img src="http://www.zalaszam.hu/edit/images/balranyil.jpg" width="45" height="40" border="0"></a></p>');
	popup.document.write('</body></html>');
	popup.focus();
}
