


function HoverImage( ID ) {
    document.getElementById( ID ).className = "link_hover";
}

function DisHoverImage( ID ) {
    document.getElementById( ID ).className = "a";
}

function CheckParentWindow( link ) {
    try {
        if ( parent.document.title == "News" ) {
            window.location.href = link;
        };
    } catch( e ) {
        window.location.href = link;
    }
}