// JavaScript Document

function redirect_plz(){
	window.location.href = 'http://www.calpam.com/index.php/calpam/' + document.suche_plz.SearchText.value;
	return true;
}

function redirect_ort(){
	window.location.href = 'http://www.calpam.com/index.php/calpam/' + document.suche_ort.SearchText.value;
	return true;
}

function redirect_ts(){
	if(document.suche_ts.SearchText_ts.value == "Kraftstoffart"){
		alert('Bitte waehlen Sie eine Kraftstoffart!');
		return false;
	}else{
		window.location.href = 'http://www.calpam.com/index.php/calpam/' + document.suche_ts.SearchText_ts.value;
		return true;
	}
}

function show_content(id){
	
	if (document.getElementById(id).style.display == 'none')
	{
		document.getElementById(id).style.display = "";
	}
	else
	{
		document.getElementById(id).style.display = "none";
	}
}

/* Bookmark site */
function bookIt(argVal,lang){
	var bookData = new Array();
	bookData = argVal.split("|");
	if(document.all){
		window.external.AddFavorite(bookData[0], bookData[1]);
	}else{
		alert("Mozilla/Netscape-Benutzer koennen die Seite nur manuell mit <Strg-D> bookmarken!");
	}
	return false;
}