function openBond()
     {
        var w = 465, h = 459; // Actual size of window we want
        var l = (screen.width  - w) / 2;
        var t = (screen.height - h) / 2;
        var params = "toolbar=no,directories=no,menubar=no,scrollbars=no,status=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",resizable=1";
        window.open("bondtext.html", "", params);
     }
	 
function openPscContact()
     {
        var w = 339, h = 289; // Actual size of window we want
        var l = (screen.width  - w) / 2;
        var t = (screen.height - h) / 2;
        var params = "toolbar=no,directories=no,menubar=no,scrollbars=no,status=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t + ",resizable=1";
        window.open("psccontact.html", "", params);
     }
