﻿/* Buttons onmouseover */
function goLite(FRM,BTN)
{
    window.document.forms[FRM].elements[BTN].style.color = "#CC5533";
    window.document.forms[FRM].elements[BTN].style.borderTopColor = "#666666";
    window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#666666";
}

/* Buttons onmouseout */
function goDim(FRM,BTN)
{
    window.document.forms[FRM].elements[BTN].style.color = "#000000";
    window.document.forms[FRM].elements[BTN].style.borderTopColor = "#AAAAAA";
    window.document.forms[FRM].elements[BTN].style.borderBottomColor = "#AAAAAA";
}

/* Question before removing an item */
function questionremoveitem(sItem)
{
	if (confirm('Are you sure you want to remove ' + sItem + '?') == true)
	    return true;
	else
	    return false;
}