#Replace $City below with your City variable
$CityMap="$City";
$CityMap=~s/ /\+/g;
$CityMap=~s/\"//g;
#Replace $State with your State variable name
$StateMap="$State";
$StateMap=~s/ /\+/g;
$StateMap=~s/\"//g;
#Replace $Address with your street address variable name
$AddressMap="$Address";
$AddressMap=~s/ /\+/g;
$AddressMap=~s/\"//g;
$AddressMap=~s/\&/and/g;
#Height and Width of Map in Pixels
$MapWidth=400;
$MapHeight=400;
#Make sure the print line below spans only a single line and
#does not wrap to a new line. It must NOT contain any spaces
#or hard returns, or your maps will not work
print "Mapquest Map
\n";