// XeiaieX PM alert
var newPMs;
function xPM()
{
	var td = document.getElementsByTagName("td");
	newPMs = (td[2].innerHTML.match(/(\d+)\s(are|is)\s/i))? RegExp.$1 : false;
	if(newPMs != false && newPMs == 1)
	{
		if (window.location != "http://ubiissoft.proboards.com/index.cgi?action=pm")
		{
			var lookitorno = window.confirm("Attention!\n\nYou have " +newPMs+ " new PM!");
			if (lookitorno)
			{
				window.location = "http://ubiissoft.proboards.com/index.cgi?action=pm";
			}
			else
			{
				return;
			}
		}
		else
		{
			return;
		}
	}
	else if(newPMs != false && newPMs > 1)
	{
		if (window.location != "http://ubiissoft.proboards.com/index.cgi?action=pm")
		{
			var lookitorno = window.confirm("Attention!\n\nYou have " +newPMs+ " new PM!");
			if (lookitorno)
			{
				window.location = "http://ubiissoft.proboards.com/index.cgi?action=pm";
			}
			else
			{
				return;
			}
		}
	}
	else
	{
		return;
	}
}

if(window.addEventListener)
{
	window.addEventListener('load', xPM(), true);
} 
else if(window.attachEvent)
{
	window.attachEvent('onload', xPM());
} 