<!--
// Written by Dexter Zafra at www.ex-designz.net
//Handle Check Username Availability Using Ajax
 var http = createRequestObjecticon();
 function createRequestObjecticon() 
     {
           var xmlhttp;
	 try 
                 { 
                    xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
                 }
	  catch(e) 
                 {
	    try { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}
	    catch(f) { xmlhttp=null; }
	    }
	        if(!xmlhttp&&typeof XMLHttpRequest!="undefined") 
                        {
	  	   xmlhttp=new XMLHttpRequest();
	           }
		   return  xmlhttp;
 }
function sndRatingicon(idnum) 
  {
	//var allvotes = document.getElementById('allvotes');
	var allResult = document.getElementById('commenticon');
             allResult.innerHTML = '<img src="/Themes/images_indexpage/aface'+idnum+'_on.gif"/><input id="radio" name="radio" type="hidden"  value="'+idnum+'" />';            
 }