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

if (!xmlhttplocal && typeof XMLHttpRequest!='undefined') {
 try {
  var xmlhttplocal = new XMLHttpRequest();
 } catch (e) {
  var xmlhttplocal=false;
  alert('couldn\'t create xmlhttp object');
 }
}
return(xmlhttplocal);
}


function sndReq(id_num, hturl) {
	
	var element = document.getElementById('unit_long'+id_num);
	  //new Effect.Fade(element);
    element.innerHTML = '<div style="height: 20px;"><em>Loading ...</em></div>';
	
    xmlhttp.open('get', hturl);
    xmlhttp.onreadystatechange = handleResponse;
    xmlhttp.send(null);
	
}

function handleResponse() {
    if(xmlhttp.readyState == 4){
		//if (xmlhttp.status == 200){
       		if (1){ 
        var response = xmlhttp.responseText;
        var update = new Array();

        if(response.indexOf('|') != -1) {
            update = response.split('|');
            changeText(update[0], update[1]);
            if (update[2]) disp_notice(update[3]);
            new Effect.Highlight(update[0], {startcolor: '#ff9900', endcolor: '#EEEEEE'});
           
        }
		}
    }
}

function disp_notice(text)
{
    elid = 'ratingResults';
    changeText( elid, text );
    el = document.getElementById(elid);
    var theTop = 30;
    if (window.innerHeight)
  	{
  		  pos = window.pageYOffset
  	}
  	else if (document.documentElement && document.documentElement.scrollTop)
  	{
  		pos = document.documentElement.scrollTop
  	}
  	else if (document.body)
  	{
  		  pos = document.body.scrollTop
  	}
  	if (pos < theTop) pos = theTop;
  	else pos += 30;
  		el.style.top = pos +'px';
  	new Effect.Appear(elid, {from: 0.0, to: 0.8});
  	setTimeout('new Effect.Fade("ratingResults")', 4000);
}

function changeText( div2show, text ) {
    // Detect Browser
    var IE = (document.all) ? 1 : 0;
    var DOM = 0; 
    if (parseInt(navigator.appVersion) >=5) {DOM=1};

    // Grab the content from the requested "div" and show it in the "container"

    if (DOM) {
        var viewer = document.getElementById(div2show)
        viewer.innerHTML=text
    }
    else if(IE) {
        document.all[div2show].innerHTML=text
    }
}
