<!--
function clearKbaseSearch( fieldObj )
{
    if ( fieldObj.value == 'Search Phrase' )
    {
        fieldObj.value = '';  
    }
}


function launchWin(url, h, w)
{
    var page = url;
    var width = unescape(w); //decode this var that are encoded on the site by XStandard
    var height = unescape(h);//decode this var that are encoded on the site by XStandard
    var parameters = "width=" + w +",height=" + h +",scrollbars=1,resizable=1,left=100,top=100,screenX=100,screenY=100";
    newWin = window.open(page, 'newWin', parameters);    
    newWin.resizeTo(width, height);
}



function rowOn(rowReference)
{
    rowReference.bgColor = '#d0e5fa';  
}
function rowOff(rowReference)
{
    rowReference.bgColor = '#ffffff';  
}




function confirmDelete(URL)
{
        var deleteOk = confirm("This action is not reversible...\nAre you sure you want to proceed?");
        if (deleteOk)
        {
                window.location.href = URL;
        }
        else
        {
                return;
        }
}



//redirect NS 4.x era browsers to upgrade page
var isNS = (document.layers)? true : false;
if (isNS){window.location.href = "/resources/redirect/upgrade.html";}



//-->