// JavaScripts

function popup(url)
{
        var newWindow;
        newWindow = this.open(url,
                  this.name+"_popup",
                  "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=800,height=600");       
        newWindow.focus();     
}

