// security fix for ie
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
    objects[i].outerHTML = objects[i].outerHTML;
}

// window pop functions
function Start(URL, WIDTH, HEIGHT) {
var winl = (screen.width - WIDTH) / 2;
var wint = (screen.height - HEIGHT) / 2;
windowprops = "left="+winl+",top="+wint+",width=" + WIDTH + ",height=" + HEIGHT;
preview = window.open(URL, "preview", windowprops);
}

function doPopup() {
url = "mailBox.html";
width = 380;  // width of window in pixels
height = 440; // height of window in pixels
Start(url, width, height);
}
