//Check Selection
function checkSelection(element) {
		var noModelStr = new String();
		var modelIndex = new Object();
		
		noModelStr = "Please select a model from the dropdown";
		modelIndex = $(element).selectedIndex;
		////alert(modelIndex);
		
		if (modelIndex) {
			if (modelIndex == 0) {
				alert(noModelStr);
				return false;
			}
			else return true;
		}
		else {
			alert(noModelStr);
			return false;
		}
}
//Set form hidden action field
function setAction(actionValue) {
	document.selectBrochureForm.action.value = actionValue;
	document.selectBrochureForm.submit();
}