//start suche etb
function start_search() {
  frm = document.forms['quicksearch'];
  val = frm.qu.value;
  if (val != 'Begriff' && val.length)
    frm.submit();
}

function start_search_etb() {
  frm = document.forms['quicksearch_etb'];
  //frm.action = '/cms/ziel/3217802/DE/';
  val = frm.nachname.value;
  
  if (val != 'Name' && val.length) {
    frm.submit();
  }
}

//start li target
function openurl(href, target) {
	if (target == '_blank') {
		window.open(href, '_blank');
	} else {
		window.top.location.href = href;
	}
}

/* dropdown */
function JumpURL(selection, target) {
	var tempIndex, selectedURL;
	tempIndex = selection.selectedIndex;
	selectedURL = selection.options[tempIndex].value;
	if (selectedURL.length == 0) {
		return;
	}
	if (target == 'blank' || selectedURL.match(/#blank$/)) {
		window.open(selectedURL, '_blank');
	} else {
		window.top.location.href = selectedURL;
	}
}

 function popupopen(url) 
{ window.open(url,'PopG','width=480,height=550,resizable=yes,scrollbars=yes,location=yes'); 
}
