	function saveRegister(pAction)
{
	if(trim(document.getElementById('REGV_Name').value)=='')
	{
		window.alert('Ingrese su Nombre');
		document.getElementById('REGV_Name').focus();
		return;
	}

	if(trim(document.getElementById('REGV_Lastname').value)=='')
	{
		window.alert('Ingrese su Apellido');
		document.getElementById('REGV_Lastname').focus();
		return;
	}

	if(trim(document.getElementById('REGV_Dni').value)=='')
	{
		window.alert('Ingrese su DNI');
		document.getElementById('REGV_Dni').focus();
		return;
	}

	if(trim(document.getElementById('REGV_Email').value)=='')
	{
		window.alert('Ingrese su E-mail');
		document.getElementById('REGV_Email').focus();
		return;
	}
	else
	{
		if(!checkEmail(trim(document.getElementById('REGV_Email').value)))
		{
			window.alert('Ingrese un E-mail valido');
			document.getElementById('REGV_Email').focus();
			return;
		}
	}
	
	if(trim(document.getElementById('REGV_Telephone').value)=='')
	{
		window.alert('Ingrese su Telefono');
		document.getElementById('REGV_Telephone').focus();
		return;
	}

	if(trim(document.getElementById('password').value)=='')
	{
		window.alert('Ingrese su Clave');
		document.getElementById('password').focus();
		return;
	}

	if (trim(document.getElementById('password').value)!=trim(document.getElementById('password_Ok').value))
	{
		window.alert('La confirmacion del password es incorrecta');
		document.getElementById('password_Ok').focus();
		return;
	}

	if(document.getElementById('cmbDepartamento').selectedIndex==0)
	{
		window.alert('Seleccione su Departamento');
		document.getElementById('cmbDepartamento').focus();
		return;
	}

	if(document.getElementById('cmbProvincia').selectedIndex==0)
	{
		window.alert('Seleccione su Provincia');
		document.getElementById('cmbProvincia').focus();
		return;
	}
	
	if(document.getElementById('cmbDistrito').selectedIndex==0)
	{
		window.alert('Seleccione su Distrito');
		document.getElementById('cmbDistrito').focus();
		return;
	}

	if(trim(document.getElementById('REGV_Address').value)=='')
	{
		window.alert('Ingrese su Direccion');
		document.getElementById('REGV_Address').focus();
		return;
	}
	
	document.getElementById('general').action = pAction;
	document.getElementById('general').submit();
}

function cleanRegister()
{
	document.getElementById('REGV_Name').value='';
	document.getElementById('REGV_Lastname').value='';
	document.getElementById('REGV_Dni').value='';
	document.getElementById('REGV_Email').value='';
	document.getElementById('REGV_Telephone').value='';
	document.getElementById('password').value='';
	document.getElementById('password_Ok').value='';
	document.getElementById('cmbDepartamento').selectedIndex=0;
	document.getElementById('cmbProvincia').selectedIndex=0;
	document.getElementById('cmbDistrito').selectedIndex=0;
	document.getElementById('REGV_Address').value='';
	document.getElementById('REGV_Name').focus();
}

function loginRegister(pAction)
{
	if(trim(document.getElementById('username').value)=='')
	{
		window.alert('Ingrese su Usuario');
		document.getElementById('username').focus();
		return;
	}

	if(trim(document.getElementById('password').value)=='')
	{
		window.alert('Ingrese su Password');
		document.getElementById('password').focus();
		return;
	}
	
	document.getElementById('general').action = pAction;
	document.getElementById('general').submit();
}

function loginClearRegister()
{
	document.getElementById('username').value='';
	document.getElementById('password').value='';
	document.getElementById('username').focus();	
}

function forgetYourPass(pAction)
{
	if(trim(document.getElementById('REGV_Email').value)=='')
	{
		window.alert('Ingrese su E-mail');
		document.getElementById('REGV_Email').focus();
		return;
	}
	else
	{
		if(!checkEmail(trim(document.getElementById('REGV_Email').value)))
		{
			window.alert('Ingrese un E-mail valido');
			document.getElementById('REGV_Email').focus();
			return;
		}
	}

	document.getElementById('general').action = pAction;
	document.getElementById('general').submit();
}