function submitFormulariArmador(url)
{
	var tmpBarcos = document.myForm.seleccioBarcos.value.split("|");
	document.getElementById('aliasBarco').value = tmpBarcos[0];
	document.getElementById('nomBarco').value = tmpBarcos[1];
		
	var tmpLlotja = document.myForm.seleccioLlotges.value.split("|");
	document.getElementById('llotja').value = tmpLlotja[0];
	document.getElementById('codiMpArmador').value = tmpLlotja[1];
	document.getElementById('nomArmador').value = tmpLlotja[2];

	document.myForm.action = url;
	
	document.myForm.submit();
}

function submitFormulariComprador(url)
{
	
	var tmpLlotja = document.myForm.seleccioLlotgesCompres.value.split("|");

	document.getElementById('llotja').value = tmpLlotja[0];
	document.getElementById('codiMpComprador').value = tmpLlotja[1];
	document.getElementById('nomComprador').value = tmpLlotja[2];
	
	document.myForm.action = url;
	
	document.myForm.submit();
}
