var name = navigator.appName;
var vers = navigator.appVersion;

// Seitenwechsel aus Listbox
function jump(targ,selObj,restore){
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

// special for this project
function datum(){
	var time=new Date();
	var month=time.getMonth()+1;
	var day=time.getDate();
	var year=time.getYear();
	if (year < 2000) 
		year = year + 1900; 
	document.write(day+"."+month+"."+year);
}
function disclaimer(){ 
window.open("disclaimer.html","Disclaimer","width=350,height=300,scrollbars=yes").focus();
} 
function grf360view(url, h, w){
	window.open(url,'360view','width='+w+',height='+h+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');
}

