function submitAddressForm(){

	var origPath = window.location.pathname;
	var thankYouPath;
	
	if(origPath == "comcast-cable-tv-deals-.html"){    //cable deal
	
		thankYouPath = "comcast-cable-tv-deals-thank-you.html";
	
	} else if (origPath == "comcast-internet-specials-.html"){   //high speed internet deal
		thankYouPath = "comcast-internet-specials-thank-you.html";
	
	} else if (origPath == "comcast-digital-voice-deals-.html"){   //voice speed internet deal
		thankYouPath = "comcast-digital-voice-deals-thank-you.html";
	
	} else {    //any other page like city page or homepage

		thankYouPath = "thank-you.html";
	}
	
	//call a virtual pageview here to simulate thank you page
	_gaq.push(['_trackPageview', thankYouPath]);


} //CLOSE FUNCTION SUBMITADDRESSFORM

