function nav(n) {
	var w = eval("document.filter.select"+n+".selectedIndex");
	var opt = eval("document.filter.select"+n+".options[w].value");
	if (opt!='' || opt!='undefined') {
		window.location.href = opt;
	}
}


function qt(f,w,h) {
	var html = '';
	html += '<object  width="'+w+'" height="'+h+'" type="video/quicktime" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B">';
	html += '<param name="src" value="'+f+'" />\n';
	html += '<param name="controller" value="TRUE" />\n';
	html += '<param name="scale" value="TOFIT" />\n';
	html += '<embed src="'+f+'" width="'+w+'" height="'+h+'" controller="TRUE" scale="TOFIT" pluginspage="http://www.apple.com/quicktime/download">';
	html += '</object>';
	
	document.write(html);
	}



