function closingWin(inValue, action){
	if (opener != null && !opener.closed){
		if (action == "add" || action == "poll" ){
			opener.location.href="fb.asp?appid="+inValue;self.close();opener.focus();
		}
		else {
			opener.location.href="fb.asp?m="+inValue;self.close();opener.focus();
		}
	}
	else {
		self.close();
	}
}