	var	ucuoPopups		=	new Array();

	

	function ucuoPopup( page, width, height, scrollbars, resizable )

	{

		if (typeof resizable == 'undefined') {

			resizable = 'no';

		}



		var popupId	= new Date().getMilliseconds();



		var	pName  = "ucuoPopup"+popupId;

		var	params = "width="+width+",height="+height+",location=no,menubar=no,resizable=no,scrollbars="+scrollbars+",status=yes,toolbar=no,resizable="+resizable;



		if (typeof onBeforePopup != 'undefined') {

            onBeforePopup();

		}

		

		ucuoPopups[popupId] = window.open( page, pName, params );

	}