function mOvr(src,clrOver) {
	if (!src.contains(event.fromElement)) {
		src.bgColor = clrOver;
                src.style.cursor = 'hand';
	}
}

function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
		src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
}

function openPage(i) 
{
var page=document.Quicklink.Page.options[i].value;
    if (document.Quicklink.Page.options[i].value > '') {
          window.location=page;
   }
}


function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}

function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}

function opensmallwin()
{
window.open(thefile,thewindowname,'width=200,height=170,resizable=no,scrollbars=no,location=no,statusbar=no,toolbar=no');
}

