"); # function that generates the output function f_googleplusone($options=0) { # check whats passed in $args = ParseArgs($options); # use the size option $size = $args['size']; if ($size == "small") { $sizeoption = " size=\"small\" "; } elseif ($size == "medium") { $sizeoption = " size=\"medium\" "; } elseif ($size == "large") { $sizeoption = " size=\"tall\" "; } else { $sizeoption = ""; } # use the count option $count = $args['count']; if ($count) { $countoption = " count=\"false\" "; } else { $countoption = ""; } # use the url option $url = $args['url']; if ($url) { $urloption = " href=\"" . $url . "\" "; } else { $urloption = ""; } # generate the output $output = ""; $output .= ""; return Keep($output); } ?>