var timer;
function start_Timeout(){
	if (timer) window.clearTimeout(timer);
	timer = window.setTimeout("resetLayer()",50);
}

function clear_Timeout(){
	if (timer) window.clearTimeout(timer);
}

function showLayer(bool){
	if (bool ==true)
	{
		document.getElementById("Service").style.visibility="visible";		
		document.getElementById("Service2").style.visibility="visible";		
		clear_Timeout();
	}
	else
		start_Timeout()
}
function resetLayer(){
	document.getElementById("Service").style.visibility="hidden";
	document.getElementById("Service2").style.visibility="hidden";
}

var weite=760,hoehe=550;

function popWin(seite)
{
	popflash = window.open(seite,"Flash","top=0,left=0,width="+weite+",height="+hoehe+",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,alwaysraised=yes,dependent=yes,titlebar=no");
}
