function GotoHelpToVSC(pageType, lerfrr)
{
	var url = "http://aide.voyages-sncf.com/rechercher?";
	var keys = "keys=";
	var type = "&filters=type:faq_train";
	var tid = "+tid:";
	var fHelp = document.getElementById("Help");//document.Help;
	var txtbox = fHelp.keys.value;
	txtbox = txtbox.replace(/^\s+$/g, '+') ;
	
	switch(pageType)  {
	   case "sejour":
	   case "hotel":
		   tid = tid + "134";
		   break;
	   case "vol":
		   tid = tid + "140";
		   break;
	   case "sejour":
		   tid = tid + "134";
		   break;
	   case "loisirs":
		   tid = tid + "143";
		   break;
	   case "voiture":
		   tid = tid + "142";
		   break;
	   case "alacarte":
		   tid = tid + "141";
		   break;		   
	   default:
		   tid = "";
		   break;
	}
	
	url = url + keys + txtbox + type + tid;
	document.location.href=ConcatUrlAndRfrr2(url, lerfrr);
}

function infosSanteFormSubmit(lerfrr)
{
	thisobj = document.getElementById('infoSanteDDL');
	if (thisobj.selectedIndex != 0)
		document.location.href=ConcatUrlAndRfrr2(thisobj.options[thisobj.selectedIndex].value, lerfrr+"_ColA_InfoSante");;
}

