/*
	EASYMOVING.NL - JAVASCRIPTS
	================================================
	(c)2005 by MediaMonks BV ; Interactive Art
	coded by Rocco Janse, rocco@mediamonks.com
	================================================
*/

	function openPopup(filename,popupwidth,popupheight,scrollbar)
	{
		if(scrollbar == '') {
			scrollbar = 'no';
		}
		if(popupwidth == '') {
			popupwidth = 575;
		}
		if(popupheight == '') {
			popupheight = 500;
		}
		filename = filename + '.php';
		var leftstart = (screen.width/2) - (popupwidth/2);
		var topstart = (screen.height/2) - (popupheight/2);
		var properties = "width="+popupwidth+", height="+popupheight+", left="+leftstart+", top="+topstart+", toolbar=no, titlebar=no, title=0, location=no, scrollbars="+scrollbar+", status=no, resizable=no";
		window.open('/pages/popups/' + filename,'popup',properties);
	}
