function validar_publicar(form) {
	if (form.empresa.value == '') { alert('Debe indicar empresa.'); form.empresa.focus(); return false; }
	if (form.telefono.value == '') { alert('Debe indicar telefono.'); form.telefono.focus(); return false; }
	if (form.email.value.indexOf('@') < 0 || form.email.value.indexOf('.') < 0 || form.email.value.indexOf(',') > 0) { alert('La direccion de email es incorrecta.'); form.email.focus(); return false; }
	if (form.producto.value == '') { alert('Debe indicar producto.'); form.producto.focus(); return false; }
	if (form.id_rubro.value == '') { alert('Debe indicar un rubro.'); form.id_rubro.focus(); return false; }
	if (Get_radios_value("tipo")=="") { alert('Debe indicar modalidad de su producto.'); form.id_rubro.focus(); return false; }
	if (form.id_pais.value == '') { alert('Debe indicar pais.'); form.id_pais.focus(); return false; }
	if (form.descripcion.value == '') { alert('Debe describir su producto.'); form.descripcion.focus(); return false; }
	return true;
}

function Get_radios_value(groupname) {

	radios=document.getElementsByName(groupname);

	for(var i=0; i < radios.length; i++) {
		if (radios[i].checked) {
			return new_modalidad=radios[i].value;
			break;
		}
	}
	return "";

}
