/*

8-)

*/
function openWindow(url, width, height, windowid)
{
	return window.open(
		url,
		(typeof windowid == 'undefined' ? 'vBPopup' : windowid),
		'statusbar=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes'
		+ (typeof width != 'undefined' ? (',width=' + width) : '') + (typeof height != 'undefined' ? (',height=' + height) : '')
	);
}

function who(threadid)
{
	return openWindow(
		'http://forum.xaknet.ru/misc.php?do=whoposted&t='+threadid,
		230, 300
	);
}
function view_reputation(userid)
{
    window.open("http://forum.xaknet.ru/view_reputation.php?u=" + userid, "Reputation", "toolbar=no, scrollbars=yes, resizable=yes, width=600, height=341");
        return false;
	}