function find_name(fa){

  createXMLHttpRequest();
 
    xmlHttp.open("GET","pro_select.php?id="  + fa,true);

    xmlHttp.onreadystatechange = function(){
	if(xmlHttp.readyState ==4){
		if(xmlHttp.status == 200){
			
			document.getElementById("divinfo").innerHTML = xmlHttp.responseText;
			document.getElementById("loadx").innerHTML= "";
                                                divinfo.filters.Play();

			//setTimeout("starRequest2()",10000);
			//setfocus();
		}
		else{
			document.getElementById("divinfo").innerHTML="ผิดพลาด" + xmlHttp.statusText;
		}
	}else
	{
	document.getElementById("loadx").innerHTML= "กำลังค้นหาข้อมูล......";
	}
   }
   xmlHttp.send(null);
  //xmlHttp.close;
}
function delid(id){
delete order[id];
show_id();
}
function Add_order(na){
var idp=0;
idp = order.length;
order[idp] = na;
//document.getElementById("order").innerHTML= order[idp];
show_id();

}
function show_id(){
	var vis=0;
	var ta=0;
	var show_dis;
	var show_msg;

	document.getElementById("proselect").innerHTML="";
	var total=0;
	show_dis = "<talbe><tr>"
        for(var p = 0; p < order.length; p++) {
		if(order[p] != undefined ){
		ta = ta+1;
		if(ta < 4){
		show_dis += "<td><img src='" + order[p] + "' class='image1' onmouseover=\"this.className='image3'\" onmouseout=\"this.className='image1'\"/ onclick=\"delid('"+ p + "')\" ></td>";
		}
		else{
		show_dis += "</tr>";
		ta = 0;
		}
 		//sO_Add(store[p],vid[p]);

		show_msg += "<img src=http://www.hatyaitoy.com/" + order[p] + " width=99px height=100px ><br>";
		
		vis=vis+1;
		}
          }
	show_dis += "</talbe>"
		document.getElementById("proselect").innerHTML =  show_dis;

		if(vis==0){
		document.getElementById("proselect").style.visibility = 'hidden';
		document.getElementById("order").style.visibility = 'hidden';
		document.getElementById("msg").value = "";

		//document.getElementById("promo").style.visibility = 'visible';
		}
		else{
		document.getElementById("proselect").style.visibility = 'visible';
		document.getElementById("order").style.visibility = 'visible';
		document.getElementById("msg").value = show_msg;

		//document.getElementById("promo").style.visibility = 'hidden';

		}
		//sO_total(total);
}