if (window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
} else if (window.ActiveXObject) {
    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} else {
	xmlhttp = false;
}

////////////////////////////////////////////////////////////////////////////////
function book_seller_log (sellerId, itemId) 
// for seller log
{
  	var url = '/anobi/ajax/book_seller.php?sellerId='+sellerId+'&itemId='+itemId;
  	
  	xmlhttp.open('GET', url, true);
  	xmlhttp.send(null);  
  	
  	return;
} // book_seller_log
