function bannerload()
{
	var hostname = window.location.hostname;
			
	suffix = hostname.toString() == ("wedding.madhome.de") ? "w.jpg":"h.jpg";
	document.images.bannerimage.src = "images/bannerblack-" + suffix;
}

function bannertext()
{
	var hostname = window.location.hostname;
	
	text = hostname.toString();
	
	if (text == "www.madhome.de")
		text += "/hochzeit";
	else if (text == "")
		text = "local";

	document.getElementById("bannertext").firstChild.data = text;
}

function showpic( url, width, height )
{
	options = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";
	pic = window.open( "", "", options + ',width=' + width + ',height=' + height );
		
	with( pic )
    {
    	focus();
    		
    	document.open();
       	document.write('<html><head>');
       	document.write('<title>Foto</title>');
       	document.write('</head>');
       	document.write('<body style="margin:0px">');
       	document.write('<img style="border:0px" onclick="window.close();" src=' + url + ' title="Zum Schließen auf das Foto klicken">');
       	document.write('</body></html>');
    }
}