/******** main.js ********/
/* freeyourmind-kehl.de */

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

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

var myWindow = null;
function newWindow(mySite,myName,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,status=no,toolbars=no,menu=no'
	myWindow = window.open(mySite,myName,settings);
}