// 01. Steuerung des Pop-Ups f&uuml;r das Startbild im Cont-Bereich der Startseite.

	<!--	
		function slide( url )
		{ sb=window.open( url, "sb", "width=500,height=741");
		if (! document.all)
		{ sb.focus(); } }
	// -->	


// 01.1 Pop-Ups f&uuml;r die Fahrzeugansichten

<!--	
	function slide( url )
	{ se=window.open( url, "se", "width=650,height=530");
	if (! document.all)
	{ se.focus(); } }
// -->		
	

// 02. Steuerung der Navi unter der "Wegweiser-Spalte" im Cont-Bereich der Startseite.

  <!--
   2* function ZweiFrames(URL0,F0,URL1,F1)
   {  
    parent.frames[F0].location.href=URL0;
    parent.frames[F1].location.href=URL1;
   }
  //-->

  
// 03. Framset-Kontrolle f&uuml;r die Einstiegsseite (Content)

 <!--
 		if (parent.location.href == self.location.href) 
		{
   		alert('Diese Seite ist Teil eines Framesets. Ich lade jetzt das Frameset.');
   		self.location.href='einstieg.html';
 		}
 //-->
 
 
 
 
// 04. PopUp Funtion innerhalb von Flashanwendungen 
 function winOpen(url, breite, hoehe) {
    links = (screen.width / 2) - (breite / 2);
    oben = (screen.height / 2) - (hoehe / 2);
    window.open(url,"popup","height="+hoehe+",width="+breite+",status=no,toolbar=no,menubar=no,location=no,resizable=no,titlebar=no,scrollbars=no,fullscreen=no,top="+oben+",left ="+links);
} 


