/*function ChgRsrc(ctl)
{
	var pref = document.location.toString(), pg = ctl[ctl.selectedIndex].value
	pref = pref.substr(0, pref.toLowerCase().indexOf('/multilin')+10)
	if (pg.substr(0,4)!='http') {
		pg = pref + pg;
		document.location = pg;
	} else {
		ctl.selectedIndex = oldRSection
		window.open(pg);
	}
}
function IsOn(where)
{
	return (document.location.toString().toLowerCase().indexOf(where.toLowerCase())!=-1)
}
with(document){
	write('<form>')
	write('<select name=RSection id=RSection onchange="ChgRsrc(this)" style="font:8pt Arial;font-weight:normal">')
	write('<option value="ProductListing.htm">Product Listing</option>')
	write('<option value="brochure/" '+(IsOn('brochure/')?'selected':'')+'>Brochures</option>')
	write('<option value="manuals/" '+(IsOn('manuals/')?'selected':'')+'>Manuals</option>')
	write('<option value="software/" '+(IsOn('software/')?'selected':'')+'>Software</option>')
	write('<option value="drawings/" '+(IsOn('drawings/')?'selected':'')+'>Drawings</option>')
	write('<option value="specs/" '+(IsOn('specs/')?'selected':'')+'>Specifications</option>')
	write('<option value="support/" '+(IsOn('support/')?'selected':'')+'>Support Documents</option>')
	write('<option value="http://pm.geindustrial.com/FAQ/" '+(IsOn('faq/')?'selected':'')+'>Application Notes Tool</option>')
	write('</select>')
	write('</form>')
}
var oldRSection = document.getElementById('RSection').selectedIndex*/
