// 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+",scrollbars=yes";
preview = window.open(URL, "preview", windowprops);
}
/*
function doPopup() {
url = "contact.html";
width = 430;  // width of window in pixels
height = 520; // height of window in pixels
Start(url, width, height);
}
*/
function doPrintingPopup() {
url = "printing.html";
width = 630;  // width of window in pixels
height = 700; // height of window in pixels
Start(url, width, height);
}