ad_general_link_format

one of the documented procedures in this installation of the ACS
Usage:
ad_general_link_format   link_id   url   link_title   link_description
What it does:
Formats one link for consistent look in other procs/pages.
Defined in: /web/philip/tcl/ad-general-links.tcl

Source code:


    
    if {[ad_parameter ClickthroughP general-links] == 1} {
	set exact_link "/ct/ad_link_${link_id}?send_to=$url"
    } else {
	set exact_link "$url"
    }

    set return_string "
    <a href=\"$exact_link\"><b>$link_title</b></a>
    "
    if {![empty_string_p $link_description]} {
	append return_string "<p>$link_description"
    }
    return $return_string


philg@mit.edu