		function PANELCLIENTES_Login()
		{
			if (PANELCLIENTES_ComprobarFormulario())
			{
				W = screen.availWidth-10;
				H = screen.availHeight-30;
				strParametros='width=' + W + ',height=' + H + ',scrollbars=0,resizable=1,toolbar=0,status=1,menubar=0,top=0,left=0,alwaysRaised=yes';
				window.open("Dummie.htm","ZONACLIENTES",strParametros);
				document.getElementById('frmPanelClientes').target="ZONACLIENTES";
				document.getElementById('frmPanelClientes').action="ZonaClientes/Login.asp";
				return(true);
			}
			else
				return(false)
		}

		function PANELCLIENTES_ComprobarFormulario()
		{
			if (replace(document.forms["frmPanelClientes"]["LOGIN"].value," ","")==""    ) {window.alert("Escriba su usuario.");         document.forms["frmPanelClientes"]["LOGIN"].focus(); return(false) }
			if (replace(document.forms["frmPanelClientes"]["PASSW"].value," ","")==""    ) {window.alert("Escriba su clave de acceso."); return(false) }
			
			return(true)
		}
