// JavaScript Document

  var current_part = false;
  
    function refresh_rate_part() {
	        if (http_request.readyState == 4) {
            if (http_request.status == 200) {
                document.getElementById('part_rating_'+current_part).innerHTML = http_request.responseText ;
            } else {
                alert('There is a problem with the rating request! Please contact info@global-flat.com or update your browser.');
            }
        }
  }
  
  function showrating(part_id) {
	var html = "<table><tr><td><div style=\"float:left\">Bad</div><div style=\"float:right\">Good</div></td></tr><tr><td><input type=\"radio\" name=\"radiobutton"+part_id+"\" value=\"1\" onclick=\"ratepart("+part_id+",this)\"><input type=\"radio\" name=\"radiobutton"+part_id+"\" value=\"2\" onclick=\"ratepart("+part_id+",this)\"><input type=\"radio\" name=\"radiobutton"+part_id+"\" value=\"3\" onclick=\"ratepart("+part_id+",this)\"><input type=\"radio\" name=\"radiobutton"+part_id+"\" value=\"4\" onclick=\"ratepart("+part_id+",this)\"><input type=\"radio\" name=\"radiobutton"+part_id+"\" value=\"5\" onclick=\"ratepart("+part_id+",this)\"></td></tr></table>" ;
	document.getElementById('part_info_'+part_id).innerHTML = html ;
	}

	function ratepart(part_id,elem)
	{
	current_part = part_id ;
	make_request("http://www.global-flat.com/parts/ratePart.php?part_id="+part_id+"\&rate_value="+elem.value,"rate_part")
	}