function GetXmlHttpObject(){xmlHttp=null;try{xmlHttp=new XMLHttpRequest()}catch(e){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")}}return xmlHttp}function getProducts(category_id){document.getElementById("disppills").innerHTML='<select name="attributes_id" id="attributes_id"><option value="">--Select Category--</option></select>';xmlhttp=GetXmlHttpObject();var url="getproducts.php";url=url+"?category_id="+category_id;xmlhttp.onreadystatechange=getProductsstateChanged;xmlhttp.open("GET",url,true);xmlhttp.send(null)}function getProductsstateChanged(){if(xmlhttp.readyState==4){document.getElementById("dispprods").innerHTML=xmlhttp.responseText}}function getAttributes(product_id){xmlhttp=GetXmlHttpObject();var url="getattributes.php";url=url+"?product_id="+product_id;xmlhttp.onreadystatechange=getAttributesstateChanged;xmlhttp.open("GET",url,true);xmlhttp.send(null)}function getAttributesstateChanged(){if(xmlhttp.readyState==4){document.getElementById("disppills").innerHTML=xmlhttp.responseText}}function check_form_field(){if(document.getElementById('categories_id')!=null){if(document.getElementById('categories_id').value==''){alert('Please Select the Category..!!');document.getElementById('categories_id').focus();return false}}if(document.getElementById('products_id')!=null){if(document.getElementById('products_id').value==''){alert('Please Select the Product..!!');document.getElementById('products_id').focus();return false}}if(document.getElementById('attributes_id')!=null){if(document.getElementById('attributes_id').value==''){alert('Please Select the Pills..!!');document.getElementById('attributes_id').focus();return false}}var attArray=new Array();var att_id=document.getElementById('attributes_id').value;attArray=att_id.split("-");dosubmit(attArray[0],attArray[1],attArray[2])}function dosubmit(id,myvalue,row_no){var no=row_no;var obj=document.getElementById('id['+id+']');obj.value=myvalue;document.cart_quantity.submit()}