function delbuyershowInfo(bcid)
{if(window.XMLHttpRequest){req=new XMLHttpRequest();}else if(window.ActiveXObject){req=new ActiveXObject("Microsoft.XMLHTTP");}
req.open("GET","/buyershow/deletebs.asp?BCID="+bcid,true);req.onreadystatechange=function()
{if(req.readyState==4)
{if(req.status==200)
{history.go(0);}}}
req.send(null);}
function delfrombcid(bcid)
{if(window.XMLHttpRequest){req=new XMLHttpRequest();}else if(window.ActiveXObject){req=new ActiveXObject("Microsoft.XMLHTTP");}
req.open("GET","/sale/buycanceldo.asp?BCID="+bcid,true);req.onreadystatechange=function()
{if(req.readyState==4)
{if(req.status==200)
{history.go(0);}}}
req.send(null);}
function addfrombcid(SellerID,ProductID,Color,Price,Amount,Size)
{var myurl="/sale/buydo.asp?SellerID="+SellerID+"&ProductID="+ProductID+"&Color="+Color+"&Price="+Price+"&Amount="+Amount+"&Size="+Size;document.PARAMFrame.location.href=myurl;return;if(window.XMLHttpRequest){req=new XMLHttpRequest();}else if(window.ActiveXObject){req=new ActiveXObject("Microsoft.XMLHTTP");}
req.open("post",myurl,true);req.setRequestHeader('Connection','close');req.setRequestHeader('Content-type','application/x-www-form-urlencoded');req.onreadystatechange=function()
{if(req.readyState==4)
{if(req.status==200)
{history.go(0);}}}
req.send(null);}