/* 
Copyright K•I•V Immobilien und Handels GmbH & Co. KG 2006 
Implementation Informatics Thunell <it/> www.thunell.com for EDV-Service-Festing GmbH
*/

/*
 * Pops up new window for appartment detail.
 */
function showAppartment(id) {
  window.open('wohnung.php?id=' + id , 'Wohnung', 'width=620,height=520,top=100,left=150,scrollbars=yes');
}

/*
 * Open a new window with request info form.
 */
function requestInfo(id) {
  window.open('request_info.php?id=' + id , 'Info', 'width=520,height=400,top=100,left=150,scrollbars=yes');
}

/*
 * Opens a new window, displaying specified image
 * in an window sized to the image size.
 */
function popUpPic(name) {
	pic = new Image();
	pic.src = name;
	window.open('pic.php?name=' + name , name, 'width=' + pic.width + ',height=' + pic.height + ',top=10,left=15,scrollbars=no');
}

function closeWindow() {
	window.close();
}

-->
