function pagejump(to_url) {
        if (to_url != "") {
        window.location=to_url
        }
}

function openWindow () {
        var NewWindow = null;
        url="newsletter2.html";
        NewWindow = window.open(url,"newsltr","fullscreen=no,top=0,left=0,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=300,height=300");
        NewWindow.focus();
}