var win = null;
function fenster(Bild1,Titel,alt,weite,hoehe,resize,scrollbar)
{

if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.charAt(0) >= 4) &&  (navigator.userLanguage == "de")) 

win=window.open('','Popup','height=' + (hoehe * 1.05) + ',width=' + (weite * 1.00) + ',resizable=' + resize + ',scrollbars=' + scrollbar + ',toolbar=no,location=no,titlebar=no,menubar=no,top=50,left=50,screenX=0,screenY=0');

 else if ((navigator.appName == "Netscape") && (navigator.appVersion.charAt(0) >=4))  

win=window.open('','Popup','height=' + (hoehe * 1.18) + ',width=' + (weite * 1.2) + ',resizable=' + resize + ',scrollbars=' + scrollbar + ',titlebar=no,top=10,left=10,screenX=0,screenY=0');



 var obj = win.document;
 obj.clear()
 obj.open()
 obj.writeln('<html><title>' + Titel + '</title><body topmargin="0" marginwidth="0" marginheight="0" leftmargin="0" background=\"./../templates/Inspiration/img/000000/hintergrund.gif\">');	
 obj.write('<img SRC=\"' + Bild1 + '\" name="pop" alt=\"' + alt + '\"');
 obj.writeln('</body></html>');
 obj.close();

}

//function fenster_weg()
//{
//	window.status='';
//	win.close();
//}

