function popupWindow1()
{
	windowsettings = eval("'fullwin=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + screen.availwidth + ",height=" + screen.availheight + "'");
	window.open('Login.aspx', 'ei', windowsettings);
}

function popupWindow()
{
	window.location = "Login.aspx";
}

function link(page)
{
	window.location.href = page
}

function changeCursor()
{
	document.body.style.cursor = "hand";
}

function resetCursor()
{
	document.body.style.cursor = "";
}

function hoverItemOn(selectedItem)
{
	selectedItem.style.backgroundColor = '#ffffff';
}

function hoverItemOff(selectedItem)
{
	selectedItem.style.backgroundColor = '';
}

