var pagetodisp = "/Marketing/privacyterms.cfm?view=";
var programtodisp = "&program=";
var dealertodisp = "&ID="

function displayTC(action,program,dealer) {
	//bmeloche - 04/12/2006 - Adding dealer.
	theURL = pagetodisp + action + programtodisp + program;
	if (dealer != undefined) theURL = theURL + dealertodisp + dealer;
	// for testing - window.open(theURL,action,'width=550,height=600,scrollbars=yes,resizable=yes');
	window.open(theURL,action,'width=550,height=600,scrollbars=yes');
}