
	function Window(What,Width,Height)
	{
	if (!Width) Width = "800";
	if (!Height) Height = "600";
	var Url = "pic.php?p=" + What + "";
	F1 = open(Url,"Fenster","width=" + Width + ",height=" + Height + ",screenX=0,screenY=0, scrollbars=no, resizable=no");
	}
	
	function Window2(What,Width,Height)
	{
	if (!Width) Width = "550";
	if (!Height) Height = "400";
	var Url = "window.php?p=" + What + "";
	F1 = open(Url,"Fenster","width=" + Width + ",height=" + Height + ",screenX=0,screenY=0, scrollbars=yes, resizable=no");
	}
	
	function Window3(What,Width,Height)
	{
	if (!Width) Width = "800";
	if (!Height) Height = "600";
	var Url = "" + What + "";
	F1 = open(Url,"Fenster","width=" + Width + ",height=" + Height + ",screenX=0,screenY=0, scrollbars=yes, resizable=yes");
	}
	
	function Window4(What,Width,Height)
	{
	if (!Width) Width = "550";
	if (!Height) Height = "400";
	var Url = "window.php?p=" + What + "";
	F1 = open(Url,"Fenster2","width=" + Width + ",height=" + Height + ",screenX=0,screenY=0, scrollbars=yes, resizable=no");
	}

	function on(w){window.status=w;return true;}
	function out(){window.status='';}
	
	function set_inactiv(id) {
       
       		     var field = document.getElementById('field' + id);
      			 var radio = document.getElementById('radio' + id); 
				 var radio2 = document.getElementById('radio2' + id); 
        
       		 	if (radio.disabled == false) { 
					field.style.color = '#999999';
					radio.disabled = true;
					radio2.disabled = true;
				} else {
   	      			field.style.color = '#003399';
					radio.disabled = false;
					radio2.disabled = false;
				}

	}