function JSAbrirVentana(url,width,height,name,top,left,redim) {
	browserName = navigator.appName;
	browserVer = navigator.appVersion.substring(0,1);
	if (width==null) {width=620;}
	if (height==null) {height=300;}
	if (name==null) {name="blanko"}
	if (top==null) {top=50;}
	if (left==null) {left=100;}
	if (redim==null) {redim="yes";}
	if (browserName != "Netscape" || browserVer != 2) {
controlWindow=window.open(url,name,"toolbar=no,top="+top+",left="+left+",height="+height+",width="+width+",location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable="+redim);
		controlWindow.focus();
   	}
}

