ad_space

one of the documented procedures in this installation of the ACS
Usage:
ad_space   { n "1" }
What it does:
returns n spaces in html (uses nbsp)
Defined in: /web/philip/tcl/ad-html.tcl

Source code:


    set result ""
    for {set i 0} {$i < $n} {incr i} {
	append result "&nbsp;"
    }
    #append result " "
    return $result


philg@mit.edu