try {
document.execCommand('BackgroundImageCache',false,true);
} catch(e) {}

function CCMap(CCTool) {
	var DD_Street="6555+NW+9th+Ave";
	var DD_City="Ft+Lauderdale";
	var DD_State="FL";
	var DD_Zip="33309";
	var DD_Zoom="4";
	var DD_GZoom="15";
	var GG= "http://maps.google.com/maps?f=q&hl=en&geocode=&q=" + DD_Street + "+" + DD_City + "+" + DD_State + "+" + DD_Zip + "&ie=UTF8&z=" + DD_GZoom + "&iwloc=addr&om=0&zoom=" + DD_Zoom + "";
  	var YY= "http://maps.yahoo.com/py/maps.py?Pyt=Tmap&addr=" + DD_Street + "&csz=" + DD_City + "+" + DD_State + "+" + DD_Zip + "&resize=l&trf=0&mag=" + DD_Zoom;
	var MQ= "http://www.mapquest.com/maps/map.adp?searchtype=address&address=" + DD_Street + "&city=" + DD_City + "&state=" + DD_State + "&zipcode=" + DD_Zip + "&mag=" + DD_Zoom;
   if (CCTool=='Google'){
   	window.open(GG);
   }
   if (CCTool == 'Yahoo'){
   	window.open(YY);
   }
   if (CCTool == 'MapQuest'){
   	window.open(MQ);
   }
 }
