function noClearFirstH1() {
    if (!document.getElementsByTagName)
        return;
    var anchors = document.getElementsByTagName("h1");
    if (anchors.length > 0)
        anchors[0].style.clear = "none";
}
