/*Auto Expiring HTML!
Created at http://utilitymill.com/utility/Auto_Expiring_HTML*/
function hidediv(id) 
{
    if (document.getElementById) { /*DOM3 = IE5, NS6*/
    document.getElementById(id).style.display = 'none';
    }
    else {
        if (document.layers) { /*Netscape 4*/
            document.id.display = 'none';
        }
        else { /*IE 4*/
            document.all.id.style.display = 'none';
        }
    }
}
var expiredate=new Date();
expiredate.setFullYear(2007,9,15);
var today=new Date();
if (today > expiredate)
{
    hidediv('utilitymill_28557');
}
