var testzeich = /\S.+/;
var testmail = /(@)/;

function pruef_1(inhalt)
{
if(!nr_1.exec(inhalt)) return  false; else return true;
}

function pruef(inhalt)
{
if(!testzeich.exec(inhalt)) return  false; else return true;
}
function pruef_zahl(inhalt)
{
if(!Number(inhalt)) return  false; else return true;
}
function pruef_mail(inhalt)
{
if(!testmail.exec(inhalt)) return  false; else return true;

}

 


 

function send(){

if(!pruef(document.kontakt.vorname.value)) {alert(unescape("Bitte f%FCllen Sie den Vornamen aus!")); return;}
if(!pruef(document.kontakt.name.value)) {alert(unescape("Bitte f%FCllen Sie den Namen aus!")); return;}
if(!pruef_mail(document.kontakt.email.value)) {alert(unescape("Bitte f%FCllen Sie die E - Mailadresse aus!")); return;}
if(!pruef(document.kontakt.kommentar.value)) {alert(unescape("Bitte f%FCllen Sie den Kommentar aus!")); return;}
document.kontakt.submit();
}

function auswahl(){
		
		a1 = document.pano.panorama.value;
		if(a1 != "0")		document.pano.submit();
		
		
	}


function auswahl_gal(){
		
		a1 = document.pano.c_id.value;
		if(a1 != "0")		document.pano.submit();
		
		
	}

function schalter(sname){

obj = document.getElementById(sname);



if(!obj.style.display) obj.style.display = 'block';

if(obj.style.display == "none"){

		obj.style.display = 'block';
		
	}
	else
	{
	
	obj.style.display = 'none';
	}
}

function send_mms(bild)
{

document.getElementById("wahl").innerHTML = '<center><br /><a href="javascript:s_mms('+bild+')" class="nav_link">Bild als MMS / Wap-Push versenden</a><br /><br /><a href="javascript:pk('+bild+')" class="nav_link">Bild als Postkarte versenden</a><br /><br /><a href="javascript:w_zu()" class="nav_link">Fenster schlie&szlig;en</a><br /></center>';
document.getElementById("wahl").style.display = "block";

}

function w_zu(){
	document.getElementById("wahl").style.display = "none";
	
}

function pk(s_bild){
	
	
	var d_pk = bld_array[s_bild];
	
	//alert(dat_name_kp);
	
	F60 = open("postkarte/index.php?seite=up&bld_nr="+d_pk ,"Fenster61","width=970,height=750,screenX=200,screenY=100,status=yes ,scrollbars=no, resizable=no");
	
	document.getElementById("wahl").style.display = "none";
}

function s_mms(s_bild){
F60 = open("mms/index.php?bld_nr="+s_bild ,"Fenster60","width=970,height=700,screenX=200,screenY=100,status=yes ,scrollbars=no, resizable=no");
document.getElementById("wahl").style.display = "none";

}
