window.onload = newWinLinks;

function newWinLinks(){
    for(var i=0; i<document.links.length; i++){
        if(document.links[i].className == "newWin"){
            document.links[i].onclick = newWindow;
        }
    }
}

function newWindow(){
    var toonWindow = window.open(this.href, "toonWin", "location,scrollbars,toolbar=no,resizable=no,width=300,height=20");
    toonWindow.focus();
    return false;
}


