
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(winREF != "noREF") {
		if (winObjRef && winObjRef.open && !winObjRef.closed) {
			return true;
		} else {
			return false;
		}
	}
}

function startOpenWin(desktopURL,titulo,w,h) {
popupwin=window.open("", "_blank","toolbar=no,location=no,status=no,menubar=no,resizable=false,scrollbars=no,width=" + w + ",height="+ (h+0));
popupwin.document.write("<html>");
popupwin.document.write("<head>");
popupwin.document.write("<title>"+titulo+"</title>");
popupwin.document.write("</head>");
popupwin.document.write("<body bgcolor='#FFFFFF' TOPMARGIN='0' LEFTMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'>");
popupwin.document.write("<table width='" + w + "' border='0' cellpadding='0' cellspacing='0' align='center'>");
popupwin.document.write("  <tr align='center' valign='middle'> ");
popupwin.document.write("    <td><img src='" + desktopURL + "' width='" + w + "' height='" + h + "' border='0'></td>");
popupwin.document.write("  </tr>");
popupwin.document.write("</table>");
popupwin.document.write("</body>");
popupwin.document.write("</html>");
}