

  function toLocation(frameid){
        
  	var str=frameid;
    if (str.search(',')>-1){
	  frameid=str.substring(0,str.search(','))
	}
	
	ajax_storelocation(frameid, 1,"");
	
  }




function createAjaxObject(){	
	 var request_o; 	
	 var browser = navigator.appName; 
	 if(browser == "Microsoft Internet Explorer"){	
	    request_o =  new ActiveXObject("Microsoft.XMLHTTP");	
	 }else{			
	 	request_o = new XMLHttpRequest();
	}	
	return request_o;
}

function store_chip(frameid){
  //alert(frameid);
	ajax_storelocation(frameid, 6,"")
}
