/*
 * Open Sonic Website
 *
 * File: style.js
 * Desc: client-side routines
 * Author: Alexandre Martins, alemartf [.a.t.] gmail [.d.o.t.] com
 */

window.onload = function()
{
    v = document.getElementsByTagName("a");
    for(i=0; i<v.length; i++) {
        if(v[i].getAttribute("rel") == "external")
            v[i].target = "_blank";
    }
}
