ajax = new sack();
//var parts_path = 'http://192.168.0.1/99dollar/ebkw_live/Parts/';
//var parts_path = 'http://www.mindzap.biz/ebkw/Parts/';


function checkbrand(laptopid)
{ 
  
    ajax.requestFile 	= 	parts_path+'ajaxmodelnumlistfrombrand.php?laptopid='+laptopid;
	  	ajax.onCompletion = 	checkResult;
		  ajax.runAJAX();
}
function checkResult()
{
  // alert("ajax.response="+ajax.response);
    var text       = ajax.response;
    document.getElementById('modelsaj').innerHTML = text ;
   //  document.getElementById('hingesaj').innerHTML = '';
    document.getElementById('hingeimageaj').innerHTML = '';
   // document.getElementById('modelsaj').innerHTML = "" ;
    //document.getElementById('modelnumaj').innerHTML = "" ;
}


function checkhinge(modelid)
{
   //alert(modelid);
	// ajax.requestFile 	= 	'ajaxupdate.php?laptopid='+document.frmpsd.select_laptop.value;
    ajax.requestFile 	= 	parts_path+'ajaxmodelnumlist_hinges.php?modelid='+modelid;
	  	ajax.onCompletion = 	checkResultHinges;
		  ajax.runAJAX();
}
function checkResultHinges()
{
    //alert("ajax.response="+ajax.response);
    var text       = ajax.response;
    document.getElementById('hingesaj').innerHTML = text ;
    document.getElementById('hingeimageaj').innerHTML = '';
}

function checkResultSeries()
{
    //alert("ajax.response="+ajax.response);
    var text       = ajax.response;
    document.getElementById('modelsaj').innerHTML = text ;
    //document.getElementById('modelnumaj').innerHTML = "" ;
}


function checkmodels(laptopid,seriesid,modelid)
{
//    alert(laptopid+"---"+seriesid+"---"+modelid);
	// ajax.requestFile 	= 	'ajaxupdate.php?laptopid='+document.frmpsd.select_laptop.value;
    ajax.requestFile 	= 	parts_path+'ajaxmodelnumlist.php?laptopid='+laptopid+'&seriesid='+seriesid+'&modelid='+modelid;
	  	ajax.onCompletion = 	checkResultModels;
		  ajax.runAJAX();
}
function checkResultModels()
{
    //alert("ajax.response="+ajax.response);
    var text       = ajax.response;
    document.getElementById('modelnumaj').innerHTML = text ;
    document.getElementById('hingeimageaj').innerHTML ='';
}


function dispimage(brandid)
{
     document.getElementById('hingeimageaj').style.display = "none" ;     
     document.getElementById('hingeimageaj_loading').style.display = "block" ;
     ajax.requestFile 	= 	parts_path+'ajaxmnum_hingeimage.php?brandid='+brandid;
	 ajax.onCompletion = 	checkResultHingesImage;
	 ajax.runAJAX();
}

function checkResultHingesImage()
{
   //alert("ajax.response="+ajax.response);
    var text       = ajax.response;
    document.getElementById('hingeimageaj_loading').style.display = "none" ;
    document.getElementById('hingeimageaj').style.display = "block" ; 
    document.getElementById('hingeimageaj').innerHTML = text ;
}
