//添加到收藏夹
  function addcollector(confirmStr,UId,CollectTYpeID,KeyIDValue,ViewItemUr,CollectTitle){
  var url;
//UId 个人会员ID
//CollectTYpeID 收藏的类别
//KeyIDValue对应关键字的值
//ViewItemUr收藏的哪个页面的链接地址
//CollectTitle收藏的该页面的描述
if (confirm(confirmStr)){
 url = "http://sunbala.cn/user/persons/saveColletor.asp?Uid="+ UId + "&CollectTYpeID=" + CollectTYpeID + "&KeyIDValue=" + KeyIDValue + "&ViewItemUr=" + ViewItemUr + "&CollectTitle=" + CollectTitle;
 //alert(url);
 //location.href=url;
 window.open(url,'','height=240,width=320');
}
}
/////  实例如下：
///// <input type="button" onclick="addcollector('确定添加到收藏夹!','<%=request.cookies(CBIQ_USER_COOKIE)(CBIQ_USER_COOKIE_KEYUID)%>','1','11205','news.cbiq.com/','家装');" value="添加到个人收藏夹">  
/////  <script src="../../scripts/collectorUI.js"></script>

