
function newWindow(winURL,winNAME,winFEAT,winREF) {
// (c)2006, Pincel Digital(R), S.A.
// http://www.pinceldigital.com
// August 08, 2006.
// winObjRef = window.open( URL, name [ , features [, replace ] ] )
// Features: toolbar=0|1, location=0|1, directories=0|1, status=0|1, menubar=0|1, scrollbars=0|1, resizable=0|1, width=pixels, height=pixels, top=pixels, left=pixels ; 0|1 or yes|no
winObjRef = window.open(winURL,winNAME,winFEAT);
eval(winREF+" = winObjRef;");
	if (winObjRef && winObjRef.open && !winObjRef.closed) {
		return true;
	} else {
		return false;
	}
}
