//Language Change
function goArea() {
 var selection;
 var selected;
 
 selection = document.forms.area.bereich.selectedIndex;
 var selected = window.document.forms.area.bereich.options[selection].value;
   
 if(selection != 'none') {
/*  window.open(selected) */
parent.location.href = selected;
 }  
}
function goLanguage() {
 var selection;
 var selected;
 
 selection = document.forms.languageselect.lang.selectedIndex;
 var selected = window.document.forms.languageselect.lang.options[selection].value;
   
 if(selection != 'none') {
/*  window.open(selected) */
parent.location.href = selected;
 }  
}

//Select Search Assistants
function goSelector(inURL) {
	popupwin=window.open(inURL);
	popupwin.focus();
}

//Popup for pics
function openWin(file){
    popupwin=window.open(file, "winpopup", 'resizable=no,menubar=no,locationbar=no,scrollbars=yes');
    popupwin.focus();
}


//Popup für flash
function openflash(file,xx,yy){
	popupwin=window.open(file, "winpopup", "resizable=no,menubar=no,locationbar=no,scrollbars=no,height=" + yy + ",width=" + xx);
	popupwin.focus();
}


//PopUp Function with fixed size		
function openWindow(url,w,h,scrolling) {
        popupwin = window.open(url, "popupwin", "scrollbars="+scrolling+",resizable=no,menubar=no,locationbar=no,height="+h+",width="+w);
        window.popupwin.focus();
    }
