// JavaScript Document
<!--
function gotoLink(form) {
	var OptionIndex=form.manufacList.selectedIndex;
	parent.location = form.manufacList.options[OptionIndex].value;
}
function gotoLink2(form) {
	var OptionIndex=form.modelList.selectedIndex;
	parent.location = form.modelList.options[OptionIndex].value;
}
function gotoLink3(form) {
	var OptionIndex=form.presentationList.selectedIndex;
	parent.location = form.presentationList.options[OptionIndex].value;
}
//-->