<!--
    function play_video (ele, vfile) {

	var isIE4;
	var ele_dv;

	if (parseInt(navigator.appVersion) >= 4) {
	    isIE4 = (navigator.appName.indexOf("Microsoft") != -1)
	}

	//  alert(navigator.appName + " " + ele.href + " " + vfile);

	if (isIE4) {

	    ele_dv = document.getElementById("deptv");

	    ele_dv.onclick = null;
	    ele_dv.innerHTML=
		'<OBJECT id=mediaPlayer  height=225  width=240 ' +
		'classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95> ' +
		'<PARAM NAME="fileName" VALUE="' + vfile + '"> ' +
		'<PARAM NAME="autoStart" VALUE="true"> ' +
		'<PARAM NAME="animationatStart" VALUE="true">' +
		'<PARAM NAME="transparentatStart" VALUE="true"> ' +
		'<PARAM NAME="showControls" VALUE="true">' +
		'</OBJECT>';

	    return false;

	} else {
	    ele.href = vfile;
	    return true;
	}
    }

    function select_vlang (ele, vfile) {

	var isIE4;
	var ele_dv;

	if (parseInt(navigator.appVersion) >= 4) {
	    isIE4 = (navigator.appName.indexOf("Microsoft") != -1)
	}


//	 alert(navigator.appName + " " + ele.href);

	
	if (isIE4) {
	    ele_dv = deptv;
//	    ele_dv.focus();
	    play_video(ele_dv, vfile);
	    return false;
	} else {
		ele.href = vfile;
	}	
    }

//-->
