function openJetInfos(infocrs)
{
	var jet_crs_code;
	
	if (infocrs.match(/^[0-9]+[a-zA-Z]$/g))
	{
		// Put the last letter of the code in upper case
		jet_crs_code = infocrs.substring(0,infocrs.length-1) + infocrs.charAt(infocrs.length-1).toUpperCase();
	}
	else if (infocrs.match(/^.+\.[a-zA-Z]{3}$/g))
	{
		// Replace the last 3 letters by fra
		jet_crs_code = infocrs.substring(0,infocrs.length-3) + "fra";
	}
	else
	{
		// Nothing to do
		jet_crs_code = infocrs;
	}
    window.open('http://www.jettours-catalogue.com/fiches_v3/individuels/'+jet_crs_code+'.html','JETTOURS','height=500,width=975,dependent=yes,menubar=no,scrollbars=yes,resizable=yes,status=no,toolbar=no,location=no');
}
