/*  For Details Page   */
function htmlThumbUp(url, qStr, thumpOption) {
  if (url.length==0) {  
      document.getElementById("txtResultThumb1").innerHTML = "";  
      return;  
  }  
  xmlHttp = GetXmlHttpObject();  
  if (xmlHttp==null){  
      alert ("Browser does not support HTTP Request unabled java script ");  
      return;  
  }  
   url=url+"?"+qStr;
   url=url+"&sid="+Math.random();  
   if(thumpOption==1)
   xmlHttp.onreadystatechange = thumUp;  
   if(thumpOption==0)
   xmlHttp.onreadystatechange = thumDown; 
   
   xmlHttp.open("GET",url,true) ;  
   xmlHttp.send(null);  
} 
function thumUp()  
{  
  if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {  
		  document.getElementById("txtResultThumb3").innerHTML = xmlHttp.responseText 
		  document.getElementById('thumbDownhrefnew').style.display ="none";
		  document.getElementById('thumbUphrefnew').style.display ="block";
  }  
  else {
          //alert(xmlHttp.status);  
  }
}
function thumDown()  
{  
  if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {  
          document.getElementById("txtResultThumb4").innerHTML = xmlHttp.responseText
		  document.getElementById('thumbDownhrefnew').style.display ="none";
		  document.getElementById('thumbUphrefnew').style.display ="block";
  }  
  else {
          //alert(xmlHttp.status);  
  }
}


