<!--
//------------------------------------------------------------------------------------
// PDF launcher 
//------------------------------------------------------------------------------------
function pdfLauncher(form)
{
var URLstring ='/parts/pdf/'   	// This sets the root of the URL that will be formed below
var pdfVar = ''	// The PDF selected from the drop-down-list
pdfVar = form.PDF.options[form.PDF.selectedIndex].value;       //Set pdfVar equal to site chosen in drop-down list
	if (pdfVar != "goNoWhere")
	{
	URLstring = URLstring + pdfVar + '.pdf';
	//location.href = URLstring;   //redirect to current window
	window.open(URLstring); //opens new window and redirects
	}
}

function takeTour(slideNumber)
{

var fileToOpen = '/parts/beaverRebuildProgram/tourInProgress/startTour.asp?slideNumber=' + slideNumber
takeTourWindow = window.open(fileToOpen,null,'menu=0,menubar=0,toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,top=120,left=115,width=600,height=450');
}
//-->