movieStatus = '';
coord = 0;
function changeStatus(movieStatus){
	if (document.all){
		eval("document.all.comment.innerText = 'Статус: " +movieStatus+ "';");
	}
}
function setCoordinates(){
	if (document.all){
		dy = pageBody.scrollTop;
		window.document.all.comment.style.top = event.y + dy - 25;
		window.document.all.comment.style.left = event.x + 5;
		coord = 1;
	}
}
function mover() {
	if (document.all){
		if (coord == 0) {setCoordinates()}
		document.all.comment.style.display = 'block';
	}
}
function mout() {
	if (document.all){
		document.all.comment.style.display = 'none';
		coord = 0;
	}
}
