// JavaScript Document
 function go_map()
            {
            if ( (document.mapmaker.fromtown.value != "") && (document.mapmaker.totown.value != "" ))
            {
            parent.location.href =  "www.nowwhereroute.com/travelmate/mapmaker/mappage.aspx?Type="+escape(document.mapmaker.fromtown.value)+"_"+document.forms.mapmaker.fromstate.options[document.forms.mapmaker.fromstate.selectedIndex].value+"_"+escape(document.mapmaker.totown.value)+"_"+document.forms.mapmaker.tostate.options[document.forms.mapmaker.tostate.selectedIndex].value;
            }
            else
            {
            alert('Please enter a value for the FROM and TO destination fields');
            }
            }
            function go_map1()    
            {	if ( (document.mapmaker1.Start_Suburb.value != "") && (document.mapmaker1.Destination_Suburb.value != "" ))
            {	window.document.mapmaker1.submit();
            }
            else
            {	alert('Driving Distances - Please enter a value for the FROM and TO destination fields');
            }
            }
//-->
