function MenuOn(e)
{
e.style.backgroundColor = "steelblue"
e.style.color = "white"
}

function MenuOff(e)
{
e.style.backgroundColor = ""
e.style.color = ""
}

function NavTo(url)
{
window.location = url
}

function PopupDownload(val){
window.open("download.aspx?PID=" + val, "external", "width=470,height=300,resizable=no,scrollbars=no,status=no,location=no,toolbar=no,menubar=no");
}