// JavaScript Document
function ViewVehicle( cvin )
	{
		document.location = "<?=$VehiclePageURL?>/VIN/" + cvin;
		return false;
	}
	function Search()
	{
		base = document.getElementById( "SearchForm" ).action;
		with( document.SearchForm )
		{
			if( Year.value != "-1" ) base += "/Year/" + Year.value;
			if( Model.value != "-1" ) base += "/Model/" + Model.value;
			if( Make.value != "-1" ) base += "/Make/" + Make.value;
			if( BodyStyle.value != "-1" ) base += "/BodyStyle/" + BodyStyle.value;
			if( psort.value != "0" ) base += "/psort/" + psort.value;
			if( ysort.value != "0" ) base += "/ysort/" + ysort.value;
			if( msort.value != "0" ) base += "/msort/" + msort.value;
			if( ksort.value != "0" ) base += "/ksort/" + ksort.value;
		}
		document.location = base;
	}
	

function ShowPopup( type, target ){
mypage = "/stock/chat.php";
myname = "Chat_Window";
w = 349;
h = 574;			
LeftPosition = (screen.width)?(screen.width-w)/2:100;
TopPosition = (screen.height)?(screen.height-h)/2:100;
settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
window.open(mypage + "?type=" + type + "&target=" + target,myname,settings);}	