// JavaScript Document
function querySt(ji) {
hu = window.location.search.substring(1);
gy = hu.split("&");
for (i=0;i<gy.length;i++) {
ft = gy[i].split("=");
if (ft[0] == ji) {
return ft[1];
}
}
}

var qsVal = querySt("err");

if (qsVal==1) {
	alert("Sorry, Your username and/or password was incorrect or you have not Activated your account");
}

if (qsVal==2) {
	alert("Sorry, The system is currently being updated.");
}

//document.write(qsVal);
//document.write("<br>");
//document.write(hu);
