// JavaScript Document

function fenster(url) 
{
	var Win = window.open(url,"displayWindow",'width=600,height=500,resizable=yes,scrollbars=no,menubar=no,status=no');
}


function anzeigen(Bild,Ordner,Hoehe, Breite){
	
	Fensteroptionen="toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no";
	
	Fenster=window.open("","Fenster",Fensteroptionen + ',width='+Breite+',height='+Hoehe);
	
	Fenster.focus();
	Fenster.document.open();
	
	with(Fenster){
	document.write("<html><head>");
	document.write("<title>Gschamsterer</title>");
	document.write("</head>");
	
	document.write("<body leftmargin=\"0\" topmargin=\"0\">");
	document.write("<a href=\"Javascript:window.close();\">");
	document.write("<img src=\"images/austria/"+Ordner+"/"+Bild+"\" alt=\"zum schließen klicken\" border=\"0\"></a>");
	document.write("</body></html>");
	document.close();
	
	}
	
	
}
