	var	popupCounter	=	1;
	var	ucuoPopups		=	new Array();
	
	function	ucuoPopup( page, width, height, scrollbars, resizable )
	{
		if( typeof resizable == 'undefined' )
			resizable	=	'yes';

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

		ucuoPopups	=	window.open( page, pName, params );
		//ucuoPopups.focus();
		popupCounter++;
	}