//-------------Begin Menu Script-----------------
function ShowMenu(elmnt)
{
document.getElementById(""+elmnt+"").style.visibility="visible"
document.getElementById(""+elmnt+"").style.height=""
}

function HideMenu(elmnt)
{
document.getElementById(""+elmnt+"").style.visibility="hidden"
document.getElementById(""+elmnt+"").style.height="0px"
}

//--------------Form Input Script-------------------------

function InputOn(form_item){
document.getElementById(""+form_item+"").style.border="1px solid #EB6F00";
}

function InputOff(form_item){
document.getElementById(""+form_item+"").style.border="1px solid #D1D0BE";
}
