function CCMap(CCTool,CCStreet,CCity,CCState,CCZip,CCZoom) {

	var DD_Street=CCStreet;
	var DD_City=CCity;
	var DD_State=CCState;
	var DD_Zip=CCZip;
	var DD_Zoom=CCZoom;

	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);
   }
  }
