// JavaScript Document

// Created 3/17/08  BSimmons  QSR 104404

function openWin(link,inHeight,inWidth) 
{
    var height=inHeight;
    var width=inWidth;
    var showWindow = null;
    var left = (screen.width - width) / 2;
    var top = (screen.height - height) / 2;
    var win_toolbar = "toolbar=" + "no";
    var win_width = "width=" + width;
    var win_height = "height=" + height;
    var win_left = "left=" + left;
    var win_top = "top=" + top;
    var win_status = "status=" + "no";
    var win_location = "location=" + "no";
    var win_menubar = "menubar=" + "no";
    var win_scrollbars = "scrollbars=" + "no";
    var win_resizable = "resizable=" + "yes";
    var win_parameters = win_toolbar + "," + win_width + "," + win_height + "," + win_left + "," + win_top + "," + win_status + "," + win_location + "," + win_menubar + "," + win_scrollbars + "," + win_resizable;
    showWindow = window.open(link, "ShowWindow", win_parameters);
    showWindow.focus();
}

-->
