<!--
function carregaVideo(hash){
	var ajax = openAjax();
	var recipiente = gE('runVideo');
	ajax.open('GET','bib_ajax/video.php?function=1&hash='+hash, true);
	ajax.onreadystatechange = function() {
		if (ajax.readyState == 1) {
			document.body.style.cursor = 'wait';	
		}
		if (ajax.readyState == 4) {
			if (ajax.status == 200) {
				document.body.style.cursor = 'default';
				recipiente.innerHTML = ajax.responseText;
			}
		}
	}
	ajax.send(null);
	return false;
}
-->
