function werbebanner() {
	breite = screen.width;
	if(breite > 1024)
	{
		obj = document.getElementById("werbebanner");
		if(obj) {
			obj.style.display = "block";
		}
	}
}

function click (e) {
  if (!e)
    e = window.event;
  if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2) || (e.which && e.which == 3)) {
    if (window.opera)
      window.alert("Sorry: Diese Funktion ist deaktiviert.");
    return false;
  }
}
if (document.layers)
  document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = click;
document.oncontextmenu = click;

function checkUstid($countryid) {
	$id_ger = 'a7c40f631fc920687.20179984';
	$id_shop = $countryid.value;
	$firma = document.getElementById('dd_firma').value;
	$obj_ustid = document.getElementById('dd_ustid');
	
	if($id_ger != $id_shop) {
		if($firma != '' && $id_shop != '' ) {
			obj = document.getElementById('dd_ustid');
			if(obj) {
				obj.style.display = 'table-row';
			}
		}
		else {
			if($obj_ustid) {
				$obj_ustid.style.display = 'none';
			}
		}
	}
	else {
		if($obj_ustid) {
			$obj_ustid.style.display = 'none';
		}
	}
}