/* *********************************************** */
/* *** Project:						   	       *** */
/* *** www.setzer-trans.at				       *** */
/* *** *************************************** *** */
/* *** file: open_window.js				       *** */
/* *** author: Markus Moldaschl		           *** */
/* *** created: 09.10.2003				       *** */
/* *** description:							   *** */
/* ***  javascriptfile with different		   *** */
/* ***  window-open funtions    			   *** */
/* *********************************************** */

function openWindow() {
	window.open("popup_anfrage.php","","status=no,menubar=no,scrollbars=yes,resizeable=yes,width=520,height=550");
}

function openPopupWindow(popup, breite, hoehe) {
	if(!breite) {
		breite = 500;
	}
	if(!hoehe) {
		hoehe = 400;
	}
	window.open(popup,"","status=no,menubar=no,scrollbars=yes,resizeable=yes,width=" + breite + ",height="+ hoehe + "");
	return false;
}

function openWindowBigImage(src) {
	window.open("popup_big_image.php?src=" + src + "","","status=no,menubar=no,scrollbars=yes,resizeable=yes,width=600,height=650");
}

function openWindowShowImage(src, newsId, pathPrefix) {
    window.open(pathPrefix + "popup_show_image.php?src=" + src + "&newsId=" + newsId,"","status=no,menubar=no,scrollbars=yes,resizeable=yes,width=600,height=500");
}
