net = (document.layers) ? 1 : 0;
ie = (document.all) ? 1 : 0;


function popup(bild,height,width)
{
	var text = "";

	var url = "http://www.osma-aufzuege.de/html/de";		// muss angegeben werden
	
	var arr = bild.split(".");
	var length = arr[0].length;
	
	var big_bild = arr[0].substr(0,length-1)+"g."+arr[1];

    if(ie)
    {
	text += "<HTML>\n<HEAD>\n<TITLE>OSMA Aufzüge</TITLE>\n<link rel=\"STYLESHEET\" type=\"text/css\" ";
	text += "href=\""+url+"/layout/style.php\">\n";
	text += "<SCRIPT language=\"javascript\" src=\""+url+"/javascript/dhtml.js\"></SCRIPT>";
	text += "</HEAD><BODY color=\"#ffffff\" bgcolor=\"#003459\" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 ";
	text += "onLoad=\"show(event,'icon'); return true;\">";
	text += "<DIV id=\"icon\" style=\"position:absolute; z-index: 20; visibility: hidden; top: 0px; left: 0px;\">";
	text += "</DIV>\n";
   	text += "<A href=\"javascript:window.close()\"><img src=\""+url+"/images/"+big_bild+"\" border=0 alt=\""+big_bild+"\">";
	text += "</A>\n";
	text += "<br clear=all>";
        text += "<br><br>\n";
        text += "<br>&nbsp;&nbsp;\n";
	text += "<IMG src=\""+url+"/layout/logo_90.gif\" align=\"left\" border=0 hspace=20>\n";
	text += "<TABLE cellspacing=0 cellpadding=0 border=0>\n";
	text += "<TR>\n";
	text += "<TD class=\"blacktext\" valign=top>\n";
	text += "<nobr>OSMA-Aufz&uuml;ge</nobr><br>\n<nobr>Albert Schenk GmbH & Co KG</nobr><br><br>\n";
	text += "<nobr>Postfach 3307</nobr><br>\n<nobr>49023 Osnabr&uuml;ck</nobr><br><br>\n";
	text += "<nobr>Telefon: (0541) 58 46 - 0</nobr><br>\n";
	text += "<nobr>Telefax: (0541) 58 46 - 42</nobr><br>\n";
	text += "<nobr>eMail: <a href=\"mailto:info@osma-aufzuege.de\" class=\"black\">info@osma-aufzuege.de</a></nobr>\n";
	text += "</TD>\n";
	text += "</TR>\n</TABLE>\n";
        text += "</BODY>\n</HTML>\n";
     }
	
	
        var f = window.open('', '', 'width='+width+',height='+height+',left=10,top=10,toolbar=0,status=0, location=0, directories=0, menubar=0, resizable=0, scrollbars=0');

        if(f.focus)
                f.focus();

        var d = f.document;
        d.open();
	if(ie)
	{
		d.write(text);
	}
	else
	{
		d.write('<HTML><HEAD><TITLE>OSMA Aufzüge</TITLE>');
		d.write('<link rel="STYLESHEET" type="text/css" href="'+url+'/layout/style.php">');
		d.write('<SCRIPT language="javascript" src="'+url+'/javascript/dhtml.js"></SCRIPT>');
		d.write('</HEAD>');
		d.write('<BODY color="#ffffff" bgcolor="#003459" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 ');
		d.write('onLoad="show(event,\'icon\'); return true;">');

		d.write('<DIV id="icon" style="position:absolute; z-index: 20; visibility: hidden; top: 0px; left: 0px;"></DIV>');

   		d.write('<A href="javascript:window.close()"><img src="'+url+'/images/'+big_bild+'" border="0" alt="'+big_bild+'"></A>');
		d.write('<br clear=all>');
        	d.write('<br><br>');
	
        	d.write('<br>&nbsp;&nbsp;');
		d.write('<IMG src="'+url+'/layout/logo_90.gif" align="left" border="0" hspace="20">');
		d.write('<TABLE cellspacing="0" cellpadding="0" border="0">');
		d.write('<TR>');
		d.write('<TD class="blacktext" valign=top>');
		d.write('<nobr>OSMA-Aufz&uuml;ge</nobr><br> <nobr>Albert Schenk GmbH & Co KG</nobr><br><br>');
		d.write('<nobr>Hirtenstra&szlig;e 4</nobr><br> <nobr>49084 Osnabr&uuml;ck</nobr><br><br>');
		d.write('<nobr>Telefon: (0541) 58 46 - 0</nobr><br>');
		d.write('<nobr>Telefax: (0541) 58 46 - 42</nobr><br>');
		d.write('<nobr>eMail: <a href="mailto:info@osma-aufzuege.de" class="black">info@osma-aufzuege.de</a></nobr>');
		d.write('</TD>');
		d.write('</TR></TABLE>');
        	d.write('</BODY></HTML>');
	}

        d.close();
}
