function enviar()
{
	document.getElementById("formularioContacto").submit();
}

function get(id)
{
	return document.getElementById(id);
}
function validaCampos()
{
	if (get("nombre").value != "" && get("empresa").value != ""  && get("telefono").value != "" && get("email").value != "" &&  get("modelo").value != "" && get("comentarios").value != "")
		enviar();
		
	else
		alert("Ingrese todos los datos");

}

function ocultaVentana()
{
	$('#popup').fadeOut();
}

function centrarPopup()
{
	var ancho = $(window).width();
	$('#popup').css('left', (ancho-$('#popup').width())/2);
	$('#popup').fadeIn();
}



