// JavaScript Document

// popup
<!--
/*-------1V - ohne flexible titel-Angabe im Popup-Fenster-----------------
function winOpenJpg(num) 
{
	var WinWidth=450;
	var WinHeight=675;
	var WindowName='popWin';
	var Link='../popup/pop.php?num='+num;
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}
*/
function winOpenJpg(num,WindowName) 
{
	var WinWidth=450;
	var WinHeight=675;
	var Link='../popup/pop.php?num='+num+'&titel='+WindowName;
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}


function popUp(num)
{
	var WinWidth=450;
	var WinHeight=675;
	var WindowName='popWin';
	var Link='../popup/pop'+num+'.html';
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}

//-->

// popup2
/*-------1V - ohne flexible titel-Angabe im Popup-Fenster-----------------
function winOpen2Jpg(num) 
{
	var WinWidth=675;
	var WinHeight=500;
	var WindowName='popWin2';
	var Link='../popup/pop2.php?num='+num;
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}
*/
function winOpen2Jpg(num,WindowName) 
{
	var WinWidth=675;
	var WinHeight=500;
	var Link='../popup/pop2.php?num='+num+'&titel='+WindowName;
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}


function popUp2(num)
{
	var WinWidth=675;
	var WinHeight=500;
	var WindowName='popWin2';
	var Link='../popup/pop2'+num+'.html';
	window.open(Link,WindowName,'toolbar=0,width='+WinWidth+',height='+WinHeight+',location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,copyhistory=0');

}

//-->







//form checker

<!--
function formular_checker(){


if (document.form1.nname.value == '')  {alert('Bitte geben Sie Ihren Nachnamen an.'); 

                                           document.form1.nname.focus(); 

                                           return (false); 

                                           }
                                           
if (document.form1.vname.value == '')  {alert('Bitte geben Sie Ihren Vornamen an.'); 

                                           document.form1.vname.focus(); 

                                           return (false); 

                                           }


                                           
                                           
if (document.form1.strasse.value == '')  {alert('Bitte geben Sie Ihre Strasse und Hausnummer an.'); 

                                           document.form1.strasse.focus(); 

                                           return (false); 

                                           }
										   
if (document.form1.plz.value == '')  {alert('Bitte geben Sie Ihre PLZ und Ort an.'); 
                                           document.form1.plz.focus(); 
                                           return (false); 
                                           }    									             										   
										   
                                           
if (document.form1.land.value == '')  {alert('Bitte geben Sie Ihr Land an.'); 

                                           document.form1.land.focus(); 

                                           return (false); 

                                           }
                                           

                                           
if (document.form1.email.value == '')  {alert('Bitte geben Sie ihre E-Mail-Adresse an.'); 

                                           document.form1.email.focus(); 

                                           return (false); 

                                           }     
               
                                                
                                                
return true;
}







//-->
