﻿function href( url, target ){
    window.open( url, target );
}

function display( obj ){
    var bool = ( document.getElementById( obj ).style.display == "none" )? false : true;
    document.getElementById( obj ).style.display = ( true )? "none" : "block";    
}

