function CCMap(CCTool) {

	var DD_Street="2100+N+Narcoossee+Road";
	var DD_City="St+Cloud";
	var DD_State="FL";
	var DD_Zip="34769";
	var DD_Zoom="4";

	var GG= "http://maps.google.com/maps?hl=en&q=" + DD_Street + "+" + DD_City + "+" + DD_State + "+" + DD_Zip + "&output=html&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);
   	}
}