theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}

function popupPage(l, t, w, h, myURL) {
    var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no" +
",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;

    constitutionWindow = window.open(myURL, "MenuPopup", windowprops);
}


