// <!--
function login()
{
	var MSIE = (navigator.appName.indexOf("Microsoft") != -1);
	var iHeight = 330;
	var iWidth = 600;	

	if (MSIE) {
		window.open("/_db/login.aspx","login","resizable=yes,height=" + iHeight + ",width=" + iWidth + ",left=" + ((screen.availWidth - iWidth - 10) / 2) + ",top=" + ((screen.availHeight - iHeight - 10) / 2))
	} else {
		window.open("/_db/login.aspx","login","resizable=yes,height=" + iHeight + ",width=" + iWidth + ",screenX=" + ((screen.availWidth - iWidth - 10) / 2) + ",screenY=" + ((screen.availHeight - iHeight - 10) / 2))
	}
}
// -->