// JavaScript Document

function frametest() 
{ 
	doc = new Array();
	doc = document.URL.split("/");
	qs = doc[doc.length-1].replace("index.cfm?fuseaction=", "");
	qs = qs.replace(/=/, ":");		// "=" durch ":" ersetzen
	qs = qs.replace(/&/, ";");		// "&" durch ";" ersetzen
	if (parent.frames.length < 1) top.location.href = 'indexf.cfm?content=' + qs;
}

function goSite(fa, id)
{
	//location.href = 'faq_detail.cfm?id=' + id;
	location.href = 'index.cfm?fuseaction=' + fa + '&id=' + id;
}

function checkKontaktForm()
{
	
	if (document.forms['kontakt'].name.value == '')
	{
		alert ("Der Name fehlt.");
		document.forms['kontakt'].name.focus();
	}
	else if (document.forms['kontakt'].vorname.value == '')
	{
		alert ("Der Vorname fehlt.");
		document.forms['kontakt'].vorname.focus();
	}
	else if (document.forms['kontakt'].plz.value == '')
	{
		alert ("Die Postleitzahl fehlt.");
		document.forms['kontakt'].plz.focus();
	}
	else if (document.forms['kontakt'].ort.value == '')
	{
		alert ("Der Ort fehlt.");
		document.forms['kontakt'].ort.focus();
	}
	/*else if (document.forms['kontakt'].land.value == '')
	{
		alert ("Das Land fehlt.");
		document.forms['kontakt'].land.focus();
	}*/
	else if (document.forms['kontakt'].land.selectedIndex == 0)
	{
		alert ("Bitte waehlen Sie ein Land aus.");
		document.forms['kontakt'].land.focus();
	}
	else if (document.forms['kontakt'].fon.value == '')
	{
		alert ("Die Telefonnummer fehlt.");
		document.forms['kontakt'].fon.focus();
	}
	else if (document.forms['kontakt'].email.value == '')
	{
		alert ("Die e-Mail Adresse fehlt.");
		document.forms['kontakt'].email.focus();
	}
	else if (document.forms['kontakt'].betreff.selectedIndex == 0)
	{
		alert ("Bitte waehlen Sie einen Betreff aus.");
		document.forms['kontakt'].betreff.focus();
	}
	else if (document.forms['kontakt'].fachhaendler.value == '')
	{
		alert ("Der Fachhaendler / Vertragspartner fehlt.");
		document.forms['kontakt'].fachhaendler.focus();
	}
	else if (document.forms['kontakt'].fh_plz.value == '')
	{
		alert ("Die Fachhaendler-PLZ fehlt.");
		document.forms['kontakt'].fh_plz.focus();
	}
	else if (document.forms['kontakt'].fh_ort.value == '')
	{
		alert ("Der Fachhaendler-Ort fehlt.");
		document.forms['kontakt'].fh_ort.focus();
	}
	else if (document.forms['kontakt'].typ.value == '')
	{
		alert ("Die Typenbezeichnung fehlt.");
		document.forms['kontakt'].typ.focus();
	}
	else if (document.forms['kontakt'].kaufdatum.value == '')
	{
		alert ("Das Kaufdatum fehlt.");
		document.forms['kontakt'].kaufdatum.focus();
	}
	else if (document.forms['kontakt'].nachricht.value == '' || document.forms['kontakt'].nachricht.value == 'Ihre Nachricht an uns...')
	{
		alert ("Die Nachricht fehlt.");
		document.forms['kontakt'].nachricht.focus();
	}
	else
		return true;
	return false;
}
