function changelocation(options_values_id,products_id)
{
  //alert(products_id);
 if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		http_request = new XMLHttpRequest();
	} else if (window.ActiveXObject) { // IE
		http_request = new ActiveXObject("Microsoft.XMLHTTP");
    }
   var linkurl="base_color.php?products_rid="+products_id+"&options_values_id="+options_values_id+"";
     http_request.open("GET",linkurl,false);
     http_request.send(null);
    var returntxt=unescape(http_request.responseText)
	//alert(returntxt);
	//getObject("faction").innerHTML = '';
	//getObject(show_price_description).innerHTML = returntxt;
	document.getElementById('show_price_description').innerHTML=returntxt;
	//
	var imglinkurl="base_img.php?products_rid="+products_id+"&options_values_id="+options_values_id+"";
     http_request.open("GET",imglinkurl,false);
     http_request.send(null);
    var imgreturntxt=unescape(http_request.responseText)
	document.getElementById('Bellocan_show').innerHTML=imgreturntxt;

} 


function changelocationJupiter(products_id)
{

 
 if (window.XMLHttpRequest) { // Mozilla, Safari, ...
		http_request = new XMLHttpRequest();
	} else if (window.ActiveXObject) { // IE
		http_request = new ActiveXObject("Microsoft.XMLHTTP");
    }

   var linkurl="base_price.php?products_id="+products_id+"";
     http_request.open("GET",linkurl,false);
     http_request.send(null);
    var returntxt=unescape(http_request.responseText)
    //getObject("username_explain").innerHTML = returntxt;
   document.getElementById('username_explain').innerHTML=returntxt;
  //alert(returntxt);
} 

