function GoToPart(PartNum){
	window.location.href='part'+PartNum+'.asp';
}
function OpenWindow(theURL,winName,features) {
	features = 'status=yes,scrollbars=yes,'+features;
	window.open(theURL,winName,'status=yes,scrollbars=yes'+features);
}
function SetVis(strLayer,strVis,strLayH){
	if(strVis=='1'){
		document.all[strLayer].style.visibility = "visible";
		document.all[strLayer].style.background = "#eeeeee";
		document.all[strLayer].style.height = strLayH;
	} 
	if(strVis=='0'){
		document.all[strLayer].style.visibility = "hidden";
		document.all[strLayer].style.height = "1";
	}
}
