<!-- 
function openNewWindow(URLtoOpen, windowName, windowFeatures)
	{
    newWindow=window.open(URLtoOpen, windowName, windowFeatures);
    };
function openwin4bigmap(URLtoOpen, windowName)
	{
    newWindow=window.open(URLtoOpen, windowName, "height=630,width=800,toolbar,scrollbars,menubar");
    };
function openNotepad(URLtoOpen)
	{
    newWindow=window.open(URLtoOpen, "notepad", "width=566, height=500, scrollbars, alwaysRaised");
    newWindow.focus();
	};
function openHouse(houseID)
	{
    newWindow4house=window.open("index4hs.php?houseID="+houseID, "house"+houseID, "toolbar,resizable=yes,menubar,scrollbars,location,titlebar");
    newWindow4house.focus();
	};
function openHouseOld(url, houseID)
	{
    newWindow4house=window.open(url, "house"+houseID, "toolbar,resizable=yes,menubar,scrollbars,location,titlebar");
    newWindow4house.focus();
	};
function openReservation(houseID)
	{
	newWindow=window.open("http://www.ferienhaus-polen.net/website/calendar_pl.php?lng=polish&id_domu="+houseID, "reservation"+houseID, "alwaysRaised,width=900,height=600,resizable=yes,scrollbars=yes,menubar=no");
    newWindow.focus();
	};
function openContact()
	{
	newWindow=window.open("wContact.php", "contact", "width=380, height=300, alwaysRaised");
    newWindow.focus();
	};
function openPriceList(houseID)
	{
	newWindow=window.open("wPriceList.php?houseID="+houseID, "pricelist"+houseID, "width=380, height=300, alwaysRaised");
    newWindow.focus();
	};

	
//-->

