function bildPopup(bild,width,height)
{
	net = (document.layers) ? 1 : 0;
	ie = (document.all) ? 1 : 0;
	net6 = (document.getElementById && !document.all) ? 1 : 0;

	var text = "";

	// get URL

	var url_arr = bild.split("/");

	if(url_arr[0] == "images")
	{
		url = "";
	}
	else
	{
		var url = url_arr[0]+"//";
		var k = 1;

		while(url_arr[k] != "images")
		{
			if(url_arr[k] != "")
			{
				url += url_arr[k]+"/";
			}
			k++;
		}
	}

	var last = url_arr.length -1;
	var pic = url_arr[last];


	
    if(ie)
    {
	text += "<HTML>\n<HEAD>\n<TITLE>&nbsp;</TITLE>\n";
	text += "<SCRIPT language=\"javascript\" src=\""+url+"javascript/dhtml.js\"></SCRIPT>";
	text += "</HEAD><BODY color=\"#ffffff\" bgcolor=\"#FFFFFF\" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 ";
	text += "onLoad=\"show('icon','"+url+"'); 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/"+pic+"\" border=0 alt=\""+pic+"\">";
	text += "</A>\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>&nbsp;</TITLE>');
		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(\'icon\',\''+url+'\')">');
		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/'+pic+'" border="0" alt="'+pic+'"></A>');
		d.write('<SCRIPT language="javascript">show(\'icon\',\''+url+'\');</SCRIPT>');
        	d.write('</BODY></HTML>');
	}

        d.close();
}




function popup(datei,width,height)
{
	var f = window.open(datei, "","width="+width+",height="+height+",top=20,left=100,location=yes,scrollbars=yes,menubar=yes,toolbar=yes,status=yes,resizable=yes");
	
	if(f.focus) 
		f.focus();
}

function popup_ohne(datei,width,height)
{
	var f = window.open(datei, "","width="+width+",height="+height+",top=20,left=100,location=0,scrollbars=0,menubar=0,toolbar=0,status=0,resizable=0");
	
	if(f.focus) 
		f.focus();
}


function oeffneShop(seite)
{
	var f = window.open(seite,'shop','width=780,height=500,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,left=20,top=20');

	if(f.focus)
	{
		f.focus();
	}
}

