/* Copyright AshAlom.com 1997-2009. Licenced to Ash Alom. ashalom [AT] gmail [Dot COM]
**************************************************************************************/



var Selected = "";
function Click(X){
	if(Selected){
		document.getElementById(Selected).style.backgroundColor="";
	}
	document.getElementById(X.id).style.backgroundColor="#D6FCD9"
	Selected = X.id;
}

function Unsubscribe(RowID, MessageID){
	self.focus();
	document.getElementById("Status"+RowID).innerHTML='<img src="pic/throbber.gif" width="16" height="16" border="0" style="Margin:-1px 0;" alt="Removing" />';
	setTimeout("document.getElementById('iFrame').src='PROCESS_forum_subscription.php?Action=Unsubscribe&id="+MessageID+"&RowID="+RowID+"'",500);
	//document.getElementById("Status"+RowID).innerHTML='<b>Removed</b>';
}
