function goPage(url)
{
	window.location.href(url);
}

function goIFramePage(url)
{
	var iFrameID = document.getElementById("gridBind");
	iFrameID.src = url;
}

function loginMsg()
{
	alert("Please Login!");
	
	errText.innerHTML = "";
	document.forms[0].txtUsername.focus();
}
