/*****************************************/
/******* ©2008 // despecial.com *******/
/*****************************************/

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

function checkJS(div) {
  document.getElementById(div).style.display = "block";
  document.getElementById("nojs").style.display = "none";
}

var Fenster = null;
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,status=no,toolbars=no,menu=no'
	Fenster = window.open(meineSeite,meinName,settings);
}

function show(elementname,show) {
	target = document.getElementById(elementname);
	if (show == 1) target.style.display = "block";
	else target.style.display = "none";
}

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

function limitText(limitField, limitCount, limitNum) {
	if (limitField.value.length > limitNum) {
		limitField.value = limitField.value.substring(0, limitNum);
	} else {
		limitCount.value = limitNum - limitField.value.length;
	}
}
