function funcCotizacion_sp(){
	if (document.frmCotizacion.txt_cotizacion_cliente_nombres.value == ''){
		alert ("Debe Ingresar sus Nombres.");
		document.frmCotizacion.txt_cotizacion_cliente_nombres.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_apellidos.value == ''){
		alert ("Debe Ingresar sus Apellidos.");
		document.frmCotizacion.txt_cotizacion_cliente_apellidos.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_direccion.value == ''){
		alert ("Debe Ingresar su Direccion.");
		document.frmCotizacion.txt_cotizacion_cliente_direccion.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_telefono.value == ''){
		alert ("Debe Ingresar su Telefono.");
		document.frmCotizacion.txt_cotizacion_cliente_telefono.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_email.value == ''){
		alert ("Debe Ingresar su Email.");
		document.frmCotizacion.txt_cotizacion_cliente_email.focus();
		return false;
	}
	if (!EsEmail(document.frmCotizacion.txt_cotizacion_cliente_email.value)){
		alert ("Debe Ingresar un Email válido.");
		document.frmCotizacion.txt_cotizacion_cliente_email.focus();
		document.frmCotizacion.txt_cotizacion_cliente_email.select();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_tema.value == ''){
		alert ("Debe Ingresar el Tema.");
		document.frmCotizacion.txt_cotizacion_tema.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_texto_cotizacion.value == ''){
		alert ("Debe Ingresar el Contenido de la Cotizacion.");
		document.frmCotizacion.txt_cotizacion_texto_cotizacion.focus();
		return false;
	}
	return true;
}

function funcCotizacion_en(){
	if (document.frmCotizacion.txt_cotizacion_cliente_nombres.value == ''){
		alert ("Name is required.");
		document.frmCotizacion.txt_cotizacion_cliente_nombres.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_apellidos.value == ''){
		alert ("LastName is required.");
		document.frmCotizacion.txt_cotizacion_cliente_apellidos.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_direccion.value == ''){
		alert ("Address is required.");
		document.frmCotizacion.txt_cotizacion_cliente_direccion.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_telefono.value == ''){
		alert ("Telephone is required.");
		document.frmCotizacion.txt_cotizacion_cliente_telefono.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_cliente_email.value == ''){
		alert ("Email is required.");
		document.frmCotizacion.txt_cotizacion_cliente_email.focus();
		return false;
	}
	if (!EsEmail(document.frmCotizacion.txt_cotizacion_cliente_email.value)){
		alert ("Wrong Email.");
		document.frmCotizacion.txt_cotizacion_cliente_email.focus();
		document.frmCotizacion.txt_cotizacion_cliente_email.select();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_tema.value == ''){
		alert ("Subject is required.");
		document.frmCotizacion.txt_cotizacion_tema.focus();
		return false;
	}
	if (document.frmCotizacion.txt_cotizacion_texto_cotizacion.value == ''){
		alert ("Comment is required.");
		document.frmCotizacion.txt_cotizacion_texto_cotizacion.focus();
		return false;
	}
	return true;
}

function funcFocusCotizacion(){
	document.frmCotizacion.txt_cotizacion_tema.focus();
}

function funcFocus(){
	document.frmCotizacion.txt_cotizacion_cliente_nombres.focus();
}
