var IE3=false;
	if ((navigator.userAgent.indexOf("MSIE") != -1)){
		if (parseInt(navigator.appVersion)<=3){
			IE3 = true;
			}
		}

function winAngebot (url)
	{ 
	angebotFenster=window.open(url,"","width=500,height=420,menubar=0,toolbar=0,status=0,scrollbars=1,location=0,resizable=0,left=300,top=240");
	
	if (!IE3){
		if (angebotFenster != null) angebotFenster.focus();
		}
}
function mygoto()
{
	if(document.FSchnell.schnellzugriff.options[document.FSchnell.schnellzugriff.selectedIndex].value.length > 5)
		document.location.href=document.FSchnell.schnellzugriff.options[document.FSchnell.schnellzugriff.selectedIndex].value;
}




function winPopup (url)
	{ 
	popupFenster=window.open(url,"","width=520,height=240,menubar=0,toolbar=0,status=0,scrollbars=0,location=0,resizable=0,left=190,top=210");
	
	if (!IE3){
		//if (popupFenster != null) popupFenster.focus();
		popupFenster.focus();
		}
}



//um vom popup auf aufrufendes browserfenster zu wechseln
function changeWin(myurl)
       { 
	   	 opener.document.location.href=myurl;
		 
	   	
	   	 if (!IE3){
	   		if (!opener.closed) opener.focus();
	   		}
      }
     
