function is_msie() {
return (navigator.appName == "Microsoft Internet Explorer");
}
function Framing()
{
if (this.document == top.document ||
top.location.host != this.location.host) {
var pathprefix = location.protocol + '//'
+ location.host
+ location.pathname.substring(0,
location.pathname.lastIndexOf('/')+1);
var doctitle = document.title;
document.clear();
document.open("text/html");
document.writeln('<html>\n<head><title>'+doctitle+
'</title></head>');
document.writeln('<frameset rows="100%,*" border="0" frameborder="0" framespacing="0">'+'<frame src="'+top.location.href+'" frameborder="0" framespacing="0" marginwidth="0" marginheight="0" scrolling="yes" name="main">'+'<frame src="blind.html" frameborder="0" framespacing="0" scrolling="no" marginwidth="0" marginheight="0" name="blind">'+'</frameset></html>');
document.close();
return true;
}
return false;
}
function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["main"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();

//PopUpfunktion Bilder
function popup(url,name,breit,hoch,scroll,menubar)
{
	if (document.layers)				// fuer netscape
	{
		breit = parseInt(breit) + 8;
		hoch = parseInt(hoch) + 6;
	}
	else						// weil explorer behandelt die fenstergroessen anders
	{
		breit = parseInt(breit) + 20;
		hoch = parseInt(hoch) + 38;
	}
	fenster=window.open(url,name,'width='+breit+',height='+hoch+',toolbar=no,location=no,directories=no,status=no,menubar='+menubar+',scrollbars='+scroll+',resizable=no,copyhistory=no');
	fenster.focus();
}


statuss();

function statuss()
{
        window.status = "AutoLand - Alles zum mobilen Glück !";
        setTimeout("statuss()", 1);
}

