<!--
function hilight( obj ) {

    obj.style.borderTop='1px solid #666666';
    obj.style.borderLeft='1px solid #666666';
    obj.style.borderBottom='1px solid #666666';
    obj.style.borderRight='1px solid #666666';
		obj.style.background='gray';
		obj.style.color='white';
    obj.style.cursor='hand';
    return true;

}

function hilighted( obj ) {

    obj.style.borderTop='1px solid navy';
    obj.style.borderLeft='1px solid navy';
    obj.style.borderBottom='1px solid navy';
    obj.style.borderRight='1px solid navy';
		obj.style.background='#9999CC';
		obj.style.color='white';
    obj.style.cursor='hand';
    return true;

}

function depress( obj ) {

    obj.style.borderTop='2px solid gray';
    obj.style.borderLeft='2px solid gray';
    obj.style.borderBottom='1px inset #ffffff';
    obj.style.borderRight='1px inset #ffffff';
    obj.style.cursor='hand';
    return true;

}
function showme( obj ) {

		obj.style.background='9999CC';
		obj.style.color='white';
    obj.style.border='1px solid navy';


}
function dark( obj ) {

    obj.style.background="ffffff";
		obj.style.color='black';
		obj.style.border='1px solid #666666';


}
function fade( obj ) {

    obj.style.borderTop='1px solid silver';
    obj.style.borderLeft='1px solid silver';
    obj.style.borderBottom='1px solid silver';
    obj.style.borderRight='1px solid silver';
		obj.style.background='silver';
		obj.style.color='black';
    return true;

}
function faded( obj ) {

    obj.style.borderTop='1px solid silver';
    obj.style.borderLeft='1px solid silver';
    obj.style.borderBottom='1px solid silver';
    obj.style.borderRight='1px solid silver';
		obj.style.background='silver';
		obj.style.color='black';
    return true;

}

function fadedsub( obj ) {

    obj.style.borderTop='1px solid white';
    obj.style.borderLeft='1px solid white';
    obj.style.borderBottom='1px solid white';
    obj.style.borderRight='1px solid white';
		obj.style.background='white';
		obj.style.color='black';
    return true;

}

function reloadFrame() {
    if (document.images){
        frames[0].location.reload();
    }else{
        frames[0].location.href = frames[0].location.href;
    }
}


function popitup(url, height, width)
{
	newwindow=window.open(url,"popup","height="+height+",width="+width+",scrollbars=yes");
	if (window.focus) {newwindow.focus()}
}

function showByLink(object,link,x,y) {
    if (document.layers && document.layers[object]) {
        document.layers[object].left = link.x + x;
        document.layers[object].top = link.y + y;
        document.layers[object].visibility = 'visible';
    }
    else if (document.all) {
        document.all[object].style.visibility = 'visible';
				
				

        if (document.all[object].myFlag == null) {
            document.all[object].style.posLeft = document.all[object].offsetLeft + x;
            document.all[object].style.posTop = document.all[object].offsetTop + y;
						document.all[object].style.zIndex = 0;
        }

        document.all[object].myFlag = true;
    }
}

function hide(object) {
    if (document.layers && document.layers[object])
        document.layers[object].visibility = 'hidden';
    else if (document.all)
        document.all[object].style.visibility = 'hidden';
}
function reveal(object) {
    if (document.layers && document.layers[object])
        document.layers[object].visibility = 'visible';
    else if (document.all)
        document.all[object].style.visibility = 'visible';
}
//-->

