/*
function openPopup(title,url,x,y) {
 window.open(url,'',"width="+x+",height="+y+",status=yes,scrollbars=yes,resizable=yes");
 //p.focus();
}
*/
function ontool(divid)
{
    document.getElementById(divid).style.background="url('img/toolactive.gif')";
    document.getElementById(divid).style.backgroundRepeat="no-repeat";
}

function outtool(divid)
{
    document.getElementById(divid).style.background="";
}

