function LicencePdfUrl()
{
	
	var	dossierPdf = "../_Static/neutral/Pdf/Licences/";
	var noPdf = String(document.getElementById("LicencesDropDownList").options.selectedIndex);
	var pdfUrl = String(document.getElementById("LicencesDropDownList").options[noPdf].value);
	var completePdfUrl = String(dossierPdf + pdfUrl);
		
	if ( pdfUrl!="" )
	{
		newwindow=window.open(completePdfUrl,"Licences","");
		if (window.focus) {newwindow.focus()}
		return false;
	}
	else
	{
		return false;
	}
}

function GrillesPdfUrl()
{
	
	//var	dossierPdf = "../_Static/neutral/Pdf/Licences/";
	var noPdf = String(document.getElementById("GrillesDropDownList").options.selectedIndex);
	var pdfUrl = String(document.getElementById("GrillesDropDownList").options[noPdf].value);
	//var completePdfUrl = String(dossierPdf + pdfUrl);
		
	if ( pdfUrl!="" )
	{
		newwindow=window.open(pdfUrl,"Grilles","");
		if (window.focus) {newwindow.focus()}
		return false;
	}
	else
	{
		return false;
	}
}