/*
* Funktion f?r PopUp-Fenster
*/
function popUp(popUpURL, popUpName, popUpWidth, popUpHeight) {
	var popUpParamString = "";
	if(popUpName == "hotellob"){//feste gr?sse, keine scrollbars
		if(popUpHeight == ""){
			popUpHeight = 225;
		}
		if(popUpWidth == ""){
			popUpWidth = 300;
		}
		popUpParamString = "menubar=0,location=0,toolbar=0,status=0,resizable=0,scrollbars=no,dependent=1,height=" + popUpHeight +",width=" + popUpWidth;
	}
	window.open(popUpURL,popUpName,popUpParamString);
}
