
function mailFormat(){
    var maildivider="[at]"

    for (i=0; i<=(document.links.length-1); i++)
    {
        if (document.links[i].href.indexOf(maildivider)!=-1)
        document.links[i].href=document.links[i].href.split(maildivider)[0]+"@"+document.links[i].href.split(maildivider)[1]
    }
}
function FP_jumpMenu(el,frm,sel) {//v1.0
 var href=el.options[el.selectedIndex].value; if(sel) el.selectedIndex=0;
 if('_new'==frm) open(href); else eval(frm+".location='"+href+"'");
}

