function displayFoto(sText) {
sElem = document.getElementById("displayFoto");
sElem.innerHTML = sText;
}

function raiting(user, foto, alb) {
var score = document.getElementById("foto_raiting").value;
 	var oXmlHttp = createXMLHttp();
	oXmlHttp.open("GET","/foto_raiting.php?user="+user+"&foto="+foto+"&alb="+alb+"&score="+score,true);
	oXmlHttp.onreadystatechange = function() {
	if(oXmlHttp.readyState == 4) {
	if(oXmlHttp.status == 200) {
	displayFoto(oXmlHttp.responseText);
	} else {
	displayFoto("Ошибка: " + oXmlHttp.statusText);
	}
	}
	};
	oXmlHttp.send(null);
}

function displayVideo(sText) {
sElem = document.getElementById("displayVideo");
sElem.innerHTML = sText;
}

function raiting_video(user, ids) {
var score = document.getElementById("video_raiting").value;
//alert(sId);
 	var oXmlHttp = createXMLHttp();
	oXmlHttp.open("GET","/video_raiting.php?user="+user+"&ids="+ids+"&score="+score,true);
	oXmlHttp.onreadystatechange = function() {
	if(oXmlHttp.readyState == 4) {
	if(oXmlHttp.status == 200) {
	displayVideo(oXmlHttp.responseText);
	} else {
	displayVideo("Ошибка: " + oXmlHttp.statusText);
	}
	}
	};
	oXmlHttp.send(null);
}
