// JavaScript Document

function google_map(menuform)
{
	var baseurl="?option=com_google_maps&Itemid=88&task=search_Category&country=";
	selecteditem = menuform.dealer_location.selectedIndex ;
	newurl = menuform.dealer_location.options[ selecteditem ].value ;
		  if (newurl.length != 0) {
			location.href = baseurl + newurl ;
		  }

}
