function CCpopWinPlus(url,ccw,cch) {
var jjw = 800, jjh = 600
jjw = screen.width;
jjh = screen.height;
var leftPos = (jjw-ccw)/2, topPos = (jjh-cch)/2;
link = window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=" + ccw + ",height=" + cch + ",left=" + leftPos + ",top=" + topPos + "");
}

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);
   }
}