function newWindow(url,name,features){
   var newWin = window.open(url,name,features);
}

function openDealerLocator(PC,lang) {
	if (lang == 'fr') 
		lang='F';
	else
		lang='E';
	newWindow('http://www.acura.ca/Acura2006/DealerLocator/SearchResults?SearchType=PC&PostalCode='+PC+'&L='+lang,'locator','width=800,height=600,scrollbars=yes,resizable=yes');
}
function openBuildIt(lang) {
	if (lang == 'fr') 
		lang='F';
	else
		lang='E';

	newWindow('http://www.acura.ca/Acura2006/BuildYourAcura/Step1.asp?modelname=TL&year=2009&L=' +  lang,'build','width=750,height=580,status=0,directories=0,scrollbars=0');
}

function testDrive(){
	window.open('blank.html', 'newTarget', 'height=650,resizable=yes,scrollbars=yes,status=no,toolbar=no,width=740');
	tempForm= document.getElementById('tl_formsubmit');
	tempForm.submit();
}

