
/* Select Box Menu*/
function get_url(formName, popupName, url) {
	var popup = document[formName].elements[popupName];
	var arg =  popup.options[popup.selectedIndex].value;
	//window.open(arg,'Vollansicht','');
  //alert(arg);
  arg = "http://www.darboven.com/"+arg;
	window.location= arg
	popup.selectedIndex = 0;
	var arg=0;
}

/* Link to Top */
function toTop(anker) {
	var url= this.window.location;
	var testUrl = String(url);
	var newUrl = testUrl.replace(anker,"");
	window.location.href = newUrl+anker;
}

/* Alternativer Mouse Over Effect*/
function cImg() {
   window.status='';
   if (document.images) {
      for (var i=0; i<cImg.arguments.length; i+=2) {
         document[cImg.arguments[i]].src = cImg.arguments[i+1];
      }
   }
}