//neues Fenster
function hinweisWindow() 
{
var newWindow=window.open("","hinweis","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=320,height=280");
newWindow.focus();
}

function impressumWindow() 
{
var newWindow=window.open("","impressum","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=600");
newWindow.focus();
}

function externWindow() 
{
var newWindow=window.open("","extern","toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=700,height=500");
newWindow.focus();
}

function anfahrtWindow() 
{
var newWindow=window.open("popup/anfahrt.html","anfahrt","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=0,resizable=1,width=520,height=520");
newWindow.focus();
}

function angebotWindow() 
{
var newWindow=window.open("popup/angebotBestellung.html","angebot","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=580,height=520");
newWindow.focus();
}

//RollOver
function chgImg(img, obj, anzahl)
{
	img1 = img+ "1";
	obj1 = obj+ "1";
	window.document.images[img1].src = eval(''+obj1+'.src');
	if (anzahl == "2" || anzahl == "3")
	{	
		img2 = img+ "2";
		obj2 = obj+ "2";
		window.document.images[img2].src = eval(''+obj2+'.src');
	}
	if (anzahl == "3")
	{	
		img3 = img+ "3";
		obj3 = obj+ "3";
		window.document.images[img3].src = eval(''+obj3+'.src');
	}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}