/*======================================================================*\
|| #################################################################### ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2005 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
|| #################################################################### ||
\*======================================================================*/


/**
* Opens a window to show a list of posters in a thread (forumpath/misc.php?do=whoposted)
*
* @param	integer	Thread ID
*
* @return	window
*/
function vbeasywho(threadid)
{
	return openWindow(
		forumpath + '/misc.php?' + SESSIONURL + 'do=whoposted&t=' + threadid,
		230, 300
	);
}


