// JavaScript Document
//by CCR.
//27/03/2008
function f_validarNew(valor1,valor2)
{
	
	//window.open(url,'PDF','location=0')
	//var url="http://www.....";
   //window.open(url,'_blank','statusbar=yes,location=no,resizable=no,left=0,width=464,height=379');

var doc=document.forms[0];
 ((doc.txtUser.value=='pbravo') && (doc.txtPass.value=='123'))? window.open('arco_area_reserva.html','PDF','location=0 scrollbars=1 width=660,height=520,resizable=yes','_blank') : f_error()

}

function f_error()
{
  alert('Ingrese su Usuario y Clave por favor...!');
}



