var xmlhttp
function Scrapbook(RummagerID,UserID)
{xmlhttp=GetXmlHttpObject();if(xmlhttp==null)
{alert("Your browser does not support AJAX!");return;}
var url="/trend-club/lobby/studio/scrapbook/scrapbook.asp";url=url+"?RummagerID="+escape(RummagerID);url=url+"&UserID="+escape(UserID);xmlhttp.onreadystatechange=stateChanged;xmlhttp.open("GET",url,true);xmlhttp.send(null);}
function stateChanged()
{if(xmlhttp.readyState==4)
{originalhtml=document.getElementById('scrapbookcontents').innerHTML;document.getElementById('scrapbookcontents').innerHTML=xmlhttp.responseText;if(originalhtml!=xmlhttp.responseText){alert('Article has been bookmarked')}
else{alert('Article is already bookmarked')}}}
function GetXmlHttpObject()
{if(window.XMLHttpRequest)
{return new XMLHttpRequest();}
if(window.ActiveXObject)
{return new ActiveXObject("Microsoft.XMLHTTP");}
return null;}
