// JavaScript Document

function getId1(id) {
	return document.getElementById(id);
}

function validarRegistro1() 
{
	
	if (getId1('reg_nombre').value == '') {
		alert('Debe ingresar su nombre y apellido.');
		getId1('reg_nombre').focus();
		return false;
	}
	if (getId1('reg_telefono').value == '') {
		alert('Debe ingresar teléfono.');
		getId1('reg_telefono').focus();
		return false;
	}
	if (getId1('reg_mail').value == '') {
		alert('Debe ingresar su E-mail.');
		getId1('reg_mail').focus();
		return false;
	}
	return true;
}

function enviar_registro()  
{
	if ( ! validarRegistro1() )
	{
		return false;
	}
	var poststr = "nombre=" + encodeURI( $("reg_nombre").value ) ; 
	poststr+="&mail=" + encodeURI( $("reg_mail").value ) ;
	poststr+="&telefono=" + encodeURI( $("reg_telefono").value ) ;
	comprar = $$('input:checked[type="radio"][name="reg_comprar"]').pluck('value');
	poststr+="&comprar=" + encodeURI( comprar ) ;
	//alert(poststr);
	//alert($("tmptxt_mail").value);
	poststr+="&tmptxt=" + encodeURI( $("tmptxt_mail").value ) ;

	referente = $F('reg_referente');
	poststr+="&referente=" + encodeURI( referente ) ;
	poststr+="&comentario=" + encodeURI( $("reg_comentario").value) ;
	makePOSTRequest_mail('inc_registro_procesar1.php', poststr);
}

function ver_form_compra(id)
{
	if ( $("comprar_" + id).style.visibility == "visible" )
	{
		$("comprar_" + id).innerHTML="";
		$("comprar_" + id).style.height="0px";
		$("comprar_" + id).style.visibility="hidden";
	}
	else
	{
		$("comprar_" + id).style.visibility="visible";
		$("comprar_" + id).style.height="300px";
		llamarasincrono("oferta_form.php?idproducto=" + id, "comprar_" + id);
	}
}