



/*
 * Clears the field that has the name of the user being
 * replied to, and empties the value storing the ID for
 * the message being replied to
 *
 * @param	Object;	The element the user's name is displayed in
 * @param	Object;	The element that is storing the reply ID
 * @return	VOID
 */
function clearReply( oNotify, oReply )
{
	if( !isValidObject(oNotify) || !isValidObject(oReply) )
		return null;
	
	oNotify.innerHTML = '';
	oReply.value = '';
}
