// JavaScript Document

function TCCPopup( strPage, strModel, strStyle )
{
	var strURL = 'popup.php?page=';
	strURL += strPage;
	strURL += '&model=';
	strURL += strModel;
	strURL += '&style=';
	strURL += strStyle;
	
	var strScroll = "0";
	
	width = 400;
	height = 350;
	if( strPage == 'range' || strPage == 'range_m' || strPage == 'range_b' ) {
		width = 477;
		height = 500;
		strScroll = "1";
	} else if( strPage == 'testdrive' || strPage == 'testdrive_m' || strPage == 'testdrive_b' ) {
		width = 357;
		height = 490;
	} else if( strPage == 'enquiry' || strPage == 'enquiry_m' || strPage == 'enquiry_b' ) {
		width = 357;
		height = 620;
	} else if( strPage == 'sendemail' ) {
		width = 357;
		height = 350;
	} else if( strPage == 'advert' ) {
		if( strModel == 'wyg_m' ||  strModel == 'wyg_bu' ||  strModel == 'wyg_ch' ) {
			width = 250;
			height = 450;
		} else if( strModel == 'wyg_used_a' ) {
			width = 430;
			height = 520;
		} else if( strModel == 'wyg_used_b' ) {
			width = 430;
			height = 350;
		} else if( strModel == 'wyg_used_c' ) {
			width = 430;
			height = 750;
		} else {
			width = 395;
			height = 700;
		}
	}
	
	window.open( strURL, "TCCPopup", "status=0,toolbar=0,width="+width+",height="+height+",scrollbars="+strScroll );
}