function CallOnDrive(Drive)
{
	if (Drive == "LHD")
	{
		document.Selection.RHDDrive.checked = false;
		document.Selection.hDrive.value = "LHD";
		document.Selection.fCountry.selectedIndex = 0
	}	
	else
	{
		document.Selection.hDrive.value = "RHD";
		document.Selection.LHDDrive.checked = false;
		document.Selection.fCountry.selectedIndex = 0
	}
}


function NB_Refresh_Location( nblist )
			{							
				if (document.Selection.fCountry.options[document.Selection.fCountry.selectedIndex].value != 0)
				{
					document.Selection.hCountry.value =
					document.Selection.fCountry.options[document.Selection.fCountry.selectedIndex].value;
					document.Selection.LHDDrive.checked = false;
					document.Selection.RHDDrive.checked = false;
					document.Selection.hDrive.value = "";
				}
				else if (document.Selection.LHDDrive.checked == true)
				{
					document.Selection.hCountry.value = document.Selection.fCountry.options[2].value + "#" + document.Selection.fCountry.options[4].value;
					
				}
				else if (document.Selection.RHDDrive.checked == true)
				{
					document.Selection.hCountry.value = document.Selection.fCountry.options[1].value + "#" + document.Selection.fCountry.options[3].value;
					
				}
				
							
				document.Selection.action = "index.asp";								
				document.Selection.submit();				
			}
			
			function NB_Refresh_Marque( nblist )
			{							
				//document.Selection.hCountry.value =
				//document.Selection.fCountry.options[document.Selection.fCountry.selectedIndex].value;
				
				document.Selection.hMarque.value = nblist.options[nblist.selectedIndex].value;
				
				//RP : Put the text of selected Make into hidden textbox "Make"
				document.Selection.Make.value = nblist.options[nblist.selectedIndex].text;
				
				document.Selection.hModel.value = "0";
				document.Selection.hYear.value = "0";
				
				document.Selection.action = "index.asp";		
				document.Selection.submit();				
			}
			
			function NB_Refresh_Model( nblist )
			{							
				//document.Selection.hCountry.value =
				//document.Selection.fCountry.options[document.Selection.fCountry.selectedIndex].value;
				
				document.Selection.hModel.value = nblist.options[nblist.selectedIndex].value;
				
				
				//RP : Put the text of selected Model into hidden textbox "Model"
				document.Selection.Model.value = nblist.options[nblist.selectedIndex].text;
				//document.Selection.hYear.value = "0"
				
				document.Selection.action = "index.asp";			
				document.Selection.submit();
			}

			function NB_Refresh_Year( nblist )
			{								
				//document.Selection.hCountry.value =
				//document.Selection.fCountry.options[document.Selection.fCountry.selectedIndex].value;
								
				document.Selection.hYear.value = nblist.options[nblist.selectedIndex].value;
				
				//RP : Put the text of selected Make into hidden textbox "Make"
				document.Selection.Year.value = nblist.options[nblist.selectedIndex].text;
				
				document.Selection.action = "index.asp";				
				document.Selection.submit();
			}					
			
			function NB_ShowProClips( nblist )
			{
				document.Selection.hYear.value = nblist.options[nblist.selectedIndex].value;				//RP : Put the text of selected Make into hidden textbox "Make"
				document.Selection.Year.value = nblist.options[nblist.selectedIndex].text;		
				document.Selection.action = "proclip-results.asp";
				document.Selection.submit();
			}