function openWindow650570 (url) {

	params = "width=650,height=570,resizable=0,status=0,scrollbars=0,toolbar=0,location=0,directories=0,menubar=0";
	var newwin = window.open(url, "special", params);
	newwin.focus();
	if (newwin) return false;
}

function openWindow400800 (url) {

	params = "width=420,height=800,resizable=0,status=0,scrollbars=yes,toolbar=0,location=0,directories=0,menubar=0";
	var newwin = window.open(url, "special", params);
	newwin.focus();
	if (newwin) return false;
}

/*Layerbewegung für die Startseiten Layer - mbo 28.05.08*/

	function moveTo(obj, x, y) { 
		if (document.getElementById) { 
			document.getElementById('speciallayer').style.left = x; 
			document.getElementById('speciallayer').style.top = y; 
		} 
	} 
	
	function init(){ 
		if(document.getElementById){ 
			obj = document.getElementById("speciallayer"); 
			obj.style.left = "-800px"; 
			obj.style.top = "-580px";
		} 
	} 
	
	function slideRight(){ 
		if(document.getElementById){ 
			if(parseInt(obj.style.left) < 280){ 
				obj.style.left = parseInt(obj.style.left) + 20 + "px";
			} 
			
			if(parseInt(obj.style.top) > -580){ 
				obj.style.top = parseInt(obj.style.top) - 6 + "px"; 
			}
			setTimeout("slideRight()",50); 
		} 
	} 
	
	function closeLayer(){ 
		if(document.getElementById){ 
			obj.style.display ="none";
		}
	} 
