function show(elementname) {
	target = document.getElementById(elementname);
	target.style.display = (target.style.display == "block") ? "none" : "block";
} 

function neuesFenster(meineSeite,meinName,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
	Fenster = window.open(meineSeite,meinName,settings);
}

function contact(pt1, pt2) {
	window.location = "mailto:" + pt1 + "@" + pt2;
}


/*********** PRELOAD IMG ************/
bg = new Image();
bg.src = "splash2.gif";
