// ##LOG: 
// -----------------------------------------------------------------------------------------------
//	28/02/05	bkel			Created.
// -----------------------------------------------------------------------------------------------
// ##TEMPLATE: 
// -----------------------------------------------------------------------------------------------
//	This file contains a function that provides window popup code.
// -----------------------------------------------------------------------------------------------


function popUp ( URL, pWidth, pHeight ) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'left=50,top=40,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + pWidth + ',height=' + pHeight );");
}
