
//--------------------------------------------------------------------------------------
// Function: SubmitFrmHidden(strType)
// Using the CHANGE buttons in the page header move to a new page
//--------------------------------------------------------------------------------------		
function SubmitFrmHidden(strType)
{
	//-----------------------
	// Stop image slideshow
	//-----------------------
	if (typeof(document.all) !== 'undefined') {
		if (document.all.btnPlay) { Play(0); }	
	}	
	
	//-------------------
	// CHANGE Part Type
	//-------------------
	if (strType == 'PARTTYPE') {
		document.frmHidden.action = "/_Members/lookups/lookup.asp?chg=1";	
	}	
	//-------------------
	// CHANGE Vehicle
	//-------------------	
	else if (strType == 'VEHICLE') {
		document.frmHidden.action = '/_Members/lookups/MMinput.asp?chg=1';
	}
	//-----------------------
	// CHANGE Options [VQs]
	//-----------------------		
	else if (strType == 'OPTIONS') {
		document.frmHidden.action = '/_Members/lookups/VQinput.asp?chg=1';
	}	
	//---------------------------
	// CHANGE Preferences [PQs]
	//---------------------------		
	else if (strType == 'PREFERENCES') {
		document.frmHidden.action = '/_Members/lookups/PQinput.asp?chg=1';
	}
	//document.frmHidden.target = "_top";	
	document.frmHidden.submit();
}

//--------------------------------------------------------------------------------------
// Function: MMDescrMore
// Display a popup-up window of complete Make-Model information
// Vehicle DETAILS button
//--------------------------------------------------------------------------------------		
function MMDescrMore()
{
	var nextWindow = document.frmHidden.hdnWN.value - 0 + 1;	
	var leftPos = nextWindow * 25 - 25;
	var topPos = nextWindow * 25;
	var wndSub1 = window.open("","wndMMDescrMore"+nextWindow,"resizable,scrollbars,height=550,width=800,left="+leftPos+",top="+topPos);
	document.frmHidden.action = "/_Members/lookups/MMDescr.asp?hdnWn="+nextWindow;
	document.frmHidden.target = "wndMMDescrMore"+nextWindow;
	document.frmHidden.submit();	
}


