// JavaScript Document

function zoom(imgurl, windowname, width, height)
{
if (! window.focus)return true;
var href;
if (typeof(imgurl) == 'string')
   href=imgurl;
else
   href=imgurl.href;
window.open(href, windowname, width, height, 'menuBorder=0, menuItemBorder=0, scrollbars=0,toolbar=0,resizable=0,menubar=0,status=0, margin-top=0, margin-left=0');
return false;
}

function galleryZoom(imgurl, imgtitle, width, height)
{
	
	picsite = window.open("popupimg.html", "zoom", width, height);

	sitecontent ="<html><head><link href='includes/styles/folger.css' rel='stylesheet' type='text/css' /></head>";
	sitecontent+="<body id='gallery_popup'>";
    sitecontent+="<a href='javascript:window.close()'><img src='"+imgurl+"' border='0' alt='klicken um das Fenster zu schließen'></a>";
    sitecontent+="<div align='center'><p>"+imgtitle+"</p></div>";
    sitecontent+="</body></html>";
	
	picsite.document.open('text/html');
  	picsite.document.write(sitecontent);
  	picsite.document.close();


}
