function ajaxArea(url,layer,value){var result=layer;var dest=url;var param=value;var xmlHttp;try
{xmlHttp=new XMLHttpRequest();}
catch(e)
{try
{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e)
{try
{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
catch(e)
{alert("Your browser does not support AJAX!");return false;}}}
dest=dest+'?kota='+param;xmlHttp.open("GET",dest,true);xmlHttp.send(null);xmlHttp.onreadystatechange=function()
{if(xmlHttp.readyState==4)
{document.getElementById(result).innerHTML=xmlHttp.responseText;}}}
function ajaxAddDetail(){var product=document.form.data_qty.value;alert('0k'+product);for(var i=0;i<product.length;i++){alert(i);}}