/* -*- Mode: java; -*-

$Id: scripts.js,v 1.1 2002/06/10 08:14:34 estesm Exp $

*/

function insert_link() {
    var text = " <a href=\"http://www.site.com/\">site name</a>";
    var newText = document.f.form_body.value + text;
    document.f.form_body.value=newText;
}


function focusGoogle() {
    var it = document.getElementById("theInput");
    it.focus();
}

