
/***********************************************************
                  - Standard Funktionen -

  ~ MM_openBrWindow(theURL,winName,features)

/***********************************************************/


 function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
 }

	function check_if_num(id) {
	 id.value = id.value.replace(/[^0-9\.,]/,"");
 }

	function toggle_vs(id, force) {
	 var obj = document.getElementById(id);
	 var stat = document.getElementById(id).style.display;
	 if (stat=='none') obj.style.display='block';
	 else obj.style.display='none';

  if (force!='') obj.style.display=force;
	}


	function breakout_frame() {
	  if (window.top != window.self) {
  	  window.top.location="index.php"
  	}
 }
