if (document.images) {
	navL2 = new Image();
	navL2.src = "_img/arrow_left_03.gif";
	navL2_high = new Image();
	navL2_high.src = "_img/trans.gif";
}
function changeOverL1(arg) {
	document.getElementById(arg).style.backgroundColor = "#4F4F4F";
}
function changeOutL1(arg) {
	document.getElementById(arg).style.backgroundColor = "#536D8E";
}
function changeOverL1Home(arg) {
	document.getElementById(arg).style.backgroundColor = "#83A2CA";
}
function changeOutL1Home(arg) {
	document.getElementById(arg).style.backgroundColor = "#34537A";
}
function changeOverL2(arg) {
	document.getElementById(arg).style.backgroundColor = "#7E9CC2";
	if (document.images){
		document[arg].src = navL2_high.src;
	}	
}
function changeOutL2(arg) {
	document.getElementById(arg).style.backgroundColor = "#5A6677";
	if (document.images){
		document[arg].src = navL2.src;
	}
}

function inputfield_focus(that)
{
	if (that.value == that.defaultValue)
	{
		that.value =""; 
	}
}

function inputfield_blur(that)
{
	if (that.value == "")
	{
		that.value =that.defaultValue; 
	}
}


 function OpenPresentation(sUrl) {
   //   var sUrl = "presentation_demo5hi.html";
      var breite = 1010;
      var hoehe = 705;
      var fenster;
      var options = "toolbar=no,location=0,left=2,top=2,directories=no,status=no,scrollbars=yes,menubar=no,hotkeys=no,resizable=yes,width=" + breite +",height=" + hoehe;
      fenster = window.open(sUrl, "ocag", options);
      fenster.focus();
    }

function OpenTest(sUrl,breite,hoehe) {
   //   var sUrl = "presentation_demo5hi.html";
      var breite = 509;
      var hoehe = 600;
      var fenster;
      var options = "toolbar=no,location=0,left=2,top=2,directories=no,status=no,scrollbars=yes,menubar=no,hotkeys=no,resizable=no,width=" + breite +",height=" + hoehe;
      fenster = window.open(sUrl, "doctest", options);
      //fenster.focus();
    }


function OpenPresentSized(sUrl,breite,hoehe) {
   //   var sUrl = "presentation_demo5hi.html";
      //var breite = 1010;
      //var hoehe = 705;
      var fenster;
      var options = "toolbar=no,location=0,left=2,top=2,directories=no,status=no,scrollbars=no,menubar=no,hotkeys=no,resizable=no,width=" + breite +",height=" + hoehe;
      fenster = window.open(sUrl, "ocag", options);
      fenster.focus();
    }

function OpenDemoWindow(ziel_url,breite,hoehe) 
{
      //var breite = 1014; //screen.width -
      //var hoehe = 714; //screen.height -
      var fenster;
	  var options = "toolbar=no,location=0,left=0,top=0,directories=no,status=no,scrollbars=no,menubar=no,hotkeys=no,resizable=no,width=" + breite +",height=" + hoehe;
      fenster = window.open(ziel_url, "Demo", options);
      fenster.focus();

      if(window.name!="Demo") 
	  {
        var startfenster;
        startfenster=window;
        startfenster.opener = self;
        window.location.replace('./index.php?p=static_contact&content=anmelden');
		//close();
      }
}

