function obtener_localizacion(id)
{
	
	var myConn = new XHConn();
	myConn.connect('./contacto_barcos_nuevos/localizacion.php','POST','id='+id,leerDatos2);
	
}


function leerDatos2(oXML)
{
	var select=oXML.responseText; 
	document.getElementById('td_localizacion').innerHTML=select;
	//alert(select);
	//document.getElementById('localizacion').innerHTML=unescape(document.getElementById('localizacion').innerHTML);	
}

function enviar(){
/*
	//if(document.formulario.anio.value=='0')return false;
	if(document.formulario.pais.value=='0')return false;
	if(document.getElementById('nombre').value=='0')return false;
	document.formulario.submit();*/
}


