function jump(iValue) {
	iValue = iValue - 5000;
	document.videoplayer.controls.currentPosition = iValue / 10000000
}


function sendMessage() {
	document.frmOnlineQuestion.submit();
	document.frmOnlineQuestion.textMessage.value = "";
}

/*

(function() {
    var ua = navigator.userAgent;

    if (ua.indexOf('MSIE') > -1 && ua.indexOf('Opera') == -1) {
        var original = window.onload;
		
        window.onload = function(e) {
            if (original) try {
                original(e);
            }
            catch () {
            }
			
            var objects = document.getElementsByTagName('object');
			
            for (var i = 0; i < objects.length; i++)
                objects[i].outerHTML = objects[i].outerHTML;
        }
    }
})();

*/