function popup(strURL)
{
var pop1 = window.open(strURL, "IngeReck","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=862,height=595,screenx=20,screeny=20");
pop1.focus();
}

/* Popup für Modul, Detailfenster */
function popup2(strURL)
{
var pop1 = window.open(strURL, "IngeReck2","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=572,height=267,screenx=20,screeny=20");
pop1.focus();
}

/* Popup für Auswahllisten in der Dateneingabe */
function popup3(strURL,strPar)
{
var pop1 = window.open(strURL+strPar, "Auswahl","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=300,screenx=20,screeny=20");
pop1.focus();
}

/* Popup für Hilfe */
function popup4(strURL)
{
var pop1 = window.open(strURL, "Tutorial","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=572,height=267,screenx=20,screeny=20");
pop1.focus();
}

/* Popup für Location Details und Ansprechpartner */
function popup5(strURL)
{
var pop1 = window.open(strURL, "IngeReck2","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=565,height=675,top=5,left=20");
pop1.focus();
}

/* Wert in Eingabefeldern löschen beim Anklicken */
function testField(daFieldObj)
{ //v1.0
	if(!daFieldObj.firstValue){
		daFieldObj.firstValue = daFieldObj.value;
	}
	if(daFieldObj.firstValue == daFieldObj.value){
		daFieldObj.value="";
	}
}

