var Detail;

// funktionen zum öffnen der fenster
function OpenStarter (URL) {

		Starter = window.open(URL,"Starter","width=840,height=650,menubar=yes,toolbar=yes,resizable=yes, scrollbars=yes, status=yes,location=no, directories=no");
		
		
		var posX =  ((screen.availWidth-840)/2);
		Starter.moveTo(posX,20 );
		Starter.focus();
}

function OpenMailWindow (URL) {

		Mailto = window.open(URL,"Mailto","width=440,height=450,menubar=no,toolbar=no,resizable=yes, scrollbars=no, status=no,location=no, directories=no");
		
		var posX =  ((screen.availWidth-440)/2);
		Mailto.moveTo(posX,20 );
		Mailto.focus();
}

function moveWindow(x,y) { window.moveTo(x,y); }

// Bilder einblenden über Text
function setVisible(id) {

	if (document.getElementById) {
		document.getElementById(id).style.visibility="visible";

	
	} else if (document.all) {
		document.all[id].style.visibility="visible";

		
	} else if (document.layers) {
		document.layers[id].visibility="visible";

	} 
} 

function setInvisible(id) {

	if (document.getElementById) {
		document.getElementById(id).style.visibility="hidden";
	
	} else if (document.all) {
		document.all[id].style.visibility="hidden";

	} else if (document.layers) {
		document.layers[id].visibility="hidden";
	} 
} 




