var httpRate = jsRemote();


function increaseStats(video) {
	if(!httpRate) {
		return;
	} else {
		httpRate.open("GET","norw/video_stats.php?random="+Math.random()+"&video="+video ,true);
		httpRate.onreadystatechange = jsChangeRateState3;
		httpRate.send(null);
		return false;
	}
}

function jsChangeRateState3() {
	if (httpRate.readyState !=4) return;
	else {
		changeRate3(httpRate.responseText);
	}
}

function changeRate3(txt) {
	if(txt.length) {
	}
}
