<!--
	/*
		filename: EADClickAds.js
		project: www.townmoneysaver.com 	CLICK ADS
		description: used for redirecting the user to the click ad url processor into a new window or current window
	*/
	
	function CLICKAD_Clicked( lngID, lngNewWindow )
	{
		if ( lngNewWindow == 1 )
		{
			window.open( 'clickAdOutDo.asp?ID=' + lngID, 'TMSClickAd' + lngID );
		}
		else
		{
			window.location = 'clickAdOutDo.asp?ID=' + lngID;
		}
	}
//-->
