function ks_ObjektInfo (id, anreise, abreise, personen) {
 	if(document.forms["NEXT"] && document.forms["NEXT"].ANREISE) {
		document.NEXT.ANREISE.value = anreise ;
		document.NEXT.ABREISE.value = abreise ;
		document.NEXT.PERSONEN.value = personen ;
		document.NEXT.action = "../subi/extObjAnsicht.php" ;
		document.NEXT.OBJID.value = id ;
		document.NEXT.submit ();
 }	
}
function ks_BuchenNK(id, anreise, abreise, personen) {
  	document.NEXT.action = "../subi/extBuchen.php" ;
  	document.NEXT.OBJID.value = id ;
  	document.NEXT.ANREISE.value = anreise ;
  	document.NEXT.ABREISE.value = abreise ;
  	if(document.NEXT.PERSONEN && personen)
  		document.NEXT.PERSONEN.value = personen;
  	document.NEXT.submit ();
}
