
var warnings = new Array(
	"WARNING: Website may overload, temporarily removing the user from this dimension.",
	"Nothing bad could ever happen while using this device.",
	"After 10 minutes its internal motor fails...",
	"WARNING: This device exposes the user to sub-core micro radiation and should not be used more than once every few days.",
	"WARNING: Death or serious injury may result from use of this device.",
	"Keeps track of your DKP. That's what it usually does anyway...",
	"Cannot be used while in combat.",
	"The DKP system for Non-Engineers that rarely blows up."
);

function pickOne(a)
{
	return a[Math.round(Math.random()*(a.length-1))];
}

function viewUser(userID)
{
	location.href = "viewUser.php?userid="+userID;
}

function viewItem(itemID)
{
	location.href = "viewItem.php?itemid="+itemID;
}

function viewEvent(eventID)
{
	location.href = "viewEvent.php?eventid="+eventID;
}

function rollAgainst(dkp)
{
	location.href = "listUsers.php?targetdkp="+dkp+"&sort=2&qsearch=0";
}

function searchItem(name)
{
	location.href = "http://wow.allakhazam.com/db/itemlookup.html?iname="+escape(name);
}

function doQuickSearch(qsearch,sort,target)
{
	location.href = "listUsers.php?qsearch="+qsearch+"&sort="+sort+"&targetdkp="+target;
}
