function fnExplore() {
var ShortCut = document.frmNavigation.cboSections.options[document.frmNavigation.cboSections.selectedIndex].value;
if (ShortCut != "None") 
location.href= ShortCut;
else
alert("Please select a section!");
}
function fnDeals() {	
var ShortCut = document.frmDeals.cboDeals.options[document.frmDeals.cboDeals.selectedIndex].value;
if (ShortCut != "None") 
location.href= ShortCut;
else
alert("Please select a section!");
}
