/*
Javascripts for Camping-in.de
*/

function ShowIt(url, wdt, hgt, tls, scb, res){
	//url=navigation - hgt=height - wdt=width - tls=toolbar - scb=scrollbars - res=resize
	var dleft = (screen.width - hgt)/2; 
	var dtop = (screen.height - wdt)/2;
	var wnd = window.open(url,"_blank","width="+(wdt+30)+",height="+(hgt+30)+",top="+dtop+",left="+dleft+",resizable="+res+",scrollbars="+scb+",toolbar="+tls);
	wnd.focus();
}

function hov(x) {
	document.getElementById(x).style.backgroundColor="#DDDDDD";
}

function nom(x) {
	document.getElementById(x).style.backgroundColor="#CAE0BC";
}

function hovb(x) {
	document.getElementById(x).style.backgroundColor="#CAE0BC";
}

function nomb(x) {
	document.getElementById(x).style.backgroundColor="#DDDDDD";
}

function chkeform(){
	var ischosen = false;
	for (i = 0; i < eform.page.length; i++){
		if (eform.page[i].checked){
			ischosen = true; 
		}
	}
	if (!ischosen){
		return false;
	}
	return (true);
}