function SilentAJAX(url){

    var page_request = false
	
    if (window.XMLHttpRequest) // if Mozilla, Safari etc
	    page_request = new XMLHttpRequest()
    else if (window.ActiveXObject){ // if IE
	    try {
		    page_request = new ActiveXObject("Msxml2.XMLHTTP")
	    } 
	    catch (e){
		    try{
			    page_request = new ActiveXObject("Microsoft.XMLHTTP")
		    }
		    catch (e){
		    }
	    }
    }
    else{
	    return false
    }

    page_request.onreadystatechange=function(){
	    //loadpage(page_request, LoadingContainer)
    }

    if(url.indexOf("?") > -1){
        url = url + '&TSA=' + get_random()
    }else{
        url = url + '?TSA=' + get_random()
    }


    page_request.open('GET', url, true);
    page_request.send(null);

    return(false);

}

function get_random()
{
    var ranNum= Math.floor(Math.random()*100000);
    return ranNum;
}

var Rated = false;
var Rating_Default = false;

function Rate(rating, id, type){

    if(!Rated){
   
        document.getElementById("rating_text").innerHTML = "<strong>Thank you.</strong>"; 

        Rated = true;
        
        if(type == "product"){
            url = "/ratings/rate_product.php?rating=" + rating + "&productid=" + id;
        }else{
            url = "/ratings/rate_store.php?rating=" + rating + "&storeid=" + id;
        }
        
        SilentAJAX(url);
    
    }
   
}

function Rating_Show_Default(showing_number, name_append){

    Rating_Default = showing_number;

    show_rating(showing_number, false, true, name_append)

}

function show_rating(showing_number, change_text, default_value, name_append){

    if(!Rated || default_value){

        if(showing_number == 0){
            document.getElementById("star_1").src = "/images/star_off.gif"
            document.getElementById("star_2").src = "/images/star_off.gif"
            document.getElementById("star_3").src = "/images/star_off.gif"
            document.getElementById("star_4").src = "/images/star_off.gif"
            document.getElementById("star_5").src = "/images/star_off.gif"
            
           document.getElementById("rating_text").innerHTML = "Rate this " + name_append;
            
           if(change_text){show_rating(Rating_Default, false, default_value, "Product")};
            
        }else if(showing_number == 1){
            document.getElementById("star_1").src = "/images/star_on.gif"
            document.getElementById("star_2").src = "/images/star_off.gif"
            document.getElementById("star_3").src = "/images/star_off.gif"
            document.getElementById("star_4").src = "/images/star_off.gif"
            document.getElementById("star_5").src = "/images/star_off.gif"
            
            if(change_text){
                document.getElementById("rating_text").innerHTML = "<strong>Bad</strong>";
            }
            
        }else if(showing_number == 2){
            document.getElementById("star_1").src = "/images/star_on.gif"
            document.getElementById("star_2").src = "/images/star_on.gif"
            document.getElementById("star_3").src = "/images/star_off.gif"
            document.getElementById("star_4").src = "/images/star_off.gif"
            document.getElementById("star_5").src = "/images/star_off.gif"
            
            if(change_text){
                document.getElementById("rating_text").innerHTML = "<strong>Ok</strong>";
            }
            
        }else if(showing_number == 3){
            document.getElementById("star_1").src = "/images/star_on.gif"
            document.getElementById("star_2").src = "/images/star_on.gif"
            document.getElementById("star_3").src = "/images/star_on.gif"
            document.getElementById("star_4").src = "/images/star_off.gif"
            document.getElementById("star_5").src = "/images/star_off.gif"
            
            if(change_text){
                document.getElementById("rating_text").innerHTML = "<strong>Good</strong>";
            }
            
        }else if(showing_number == 4){
            document.getElementById("star_1").src = "/images/star_on.gif"
            document.getElementById("star_2").src = "/images/star_on.gif"
            document.getElementById("star_3").src = "/images/star_on.gif"
            document.getElementById("star_4").src = "/images/star_on.gif"
            document.getElementById("star_5").src = "/images/star_off.gif"
            
            if(change_text){
                document.getElementById("rating_text").innerHTML = "<strong>Great</strong>";
            }
            
            
        }else if(showing_number == 5){
            document.getElementById("star_1").src = "/images/star_on.gif"
            document.getElementById("star_2").src = "/images/star_on.gif"
            document.getElementById("star_3").src = "/images/star_on.gif"
            document.getElementById("star_4").src = "/images/star_on.gif"
            document.getElementById("star_5").src = "/images/star_on.gif"
            
            if(change_text){
                document.getElementById("rating_text").innerHTML = "<strong>The Best!</strong>";
            }
            
        }
    }
}