/*
copyright (c) by André Rust 2003 || all rights reserved
url: http://www.Andre-Rust.de || email: me@Andre-Rust.de
*/

//********** maximize window **********
 function showtip(current,e,num)
	{
	if(document.getElementById)
	  {
	   elm=document.getElementById("tooltip")
	   elml=current ///richtig???
	   elm.innerHTML=tip[num]
	   elm.style.height=elml.style.height
	   elm.style.top=parseInt(14)
	   elm.style.left=parseInt(15)
	   elm.style.visibility = "visible"
	  }
	}

function hidetip()
	{
	if(document.getElementById)
		{
		elm.style.visibility="hidden"
		}
	}
//********** END dynamic tooltip_link_mouseover **********


//********************* START FORM MANAGEMENT
function form_button_over(id)
	{
	id.style.backgroundColor = "#65C580";
	window.status = "";
	}

function form_button_out(id)
	{
	id.style.backgroundColor = "#9fb6cd";
	window.status = "";
	}


function form_over(id,statusmsg)
	{
	id.style.backgroundColor = "#65C580";
	window.status = statusmsg;
	}

function form_field_out(id)
	{
	id.style.backgroundColor = "#9fb6cd";
	window.status = "";
	}

function ar_OpenWindow(URL,Name,Features)
	{ 
	window.open(URL,Name,Features);
	}

	var browser = new Object();
	browser.lowres 	= (screen.width < 1024);
	browser.medres 	= (screen.width == 1024);
	browser.highres 	= (screen.width > 1024);

	if (browser.lowres)
		{
		ar_OpenWindow('Resolution_too_small.htm','Ihre_Bildschirmaufloesung','width=400, height=400 ,toolbar=no, scrollbars=no, resizable=no, menubar=no'); //, top='+((screen.height/2))+',left='+((screen.width/2))+'
		}