/* Pupupfunktion inkl. PopUpblockerchekcer */

function PopUp(URL,NAME,EIGEN){
    var result = window.open(URL,NAME,EIGEN+',menubar=no,location=no,toolbar=no,resizable=no,status=no,scrollbars=yes');

	if (result != null){
		result.moveTo(100,100);
	}
	else{
		html = "<div id='idname111' name='idname111' style='position:absolute; height:200px; width:200px; background-color:#DFDFDF; z-index:100; top:150px; left:100px; padding:10px;'><a href='#' onclick='Layvisible(111, 0)' class='allglink'>Schliessen</a><h2>Hinweis!</h2><p>Sollten Sie nicht automatisch weitergeleitet werden, klicken Sie bitte <a href='"+URL+"' target='_blank' class='allglink'>hier</a>!<br /><br /><br /></p></div>";
	}
	document.write(html);

}