// JavaScript Document
<!--
function PW_popWindow(URL,Width,Height) {
	var intWidth,intHeight,intLeft,intTop;
	intWidth  = Width;
	intHeight = Height;
	intLeft   = (screen.width / 2) - (intWidth / 2);
	intTop    = (screen.height / 2) - (intHeight / 2);
	window.open(URL,'newWindow','scrollbars=yes,width='+intWidth+',height='+intHeight+',left='+intLeft+',top='+intTop);
}
function updatePrice(Ident,Price,Days) {
		objCount    = document.getElementById('PersonZahl' + Ident);
		intCount    = objCount.value;
		objPrice    = document.getElementById('Price' + Ident);
		intPrice    = Price * intCount * Days;
		document.getElementById('Price' + Ident).value = intPrice;
//alert(intPrice);
		//strFunktion = objPrice.value;
}
//-->
