function dealerSitePopup( pDealerURL ) {
	newWindow = window.open( pDealerURL, "DealerSite", "toolbar = 1, location = 0, directories = 0, status = 1, menubar = 0, scrollbars = 1, resizable = 1, width = 700, height = 500, top = 50, left = 50" );
	newWindow.resizeTo( 800, 600 );
}

function carfaxPopup( pCarfaxURL ) {
	newWindow = window.open( pCarfaxURL, "Carfax", "toolbar = 1, location = 1, directories = 0, status = 1, menubar = 0, scrollbars = 1, resizable = 1, width = 775, height = 700, top = 25, left = 25" );
	newWindow.resizeTo( 775, 700 );
}

