// JavaScript Document
function sagent_js_PopWin(url,name,w,h){    
    var winl = (screen.width-w)/2;
    var wint = (screen.height-h)/2;
    if (winl < 0) winl = 0;
    if (wint < 0) wint = 0;
    var settings = 'height=' + h + ',';
    settings += 'width=' + w + ',';
    settings += 'top=' + wint + ',';
    settings += 'left=' + winl + ',';
    settings += 'resizable=1,scrollbars=1,toolbar=0,status=1';
    var ContextWindow = window.open(url,name,settings);
    ContextWindow.focus();
    return false;
}

function closeWindow() {
  window.close();
}

function homeWindow() {
  window.close();
  window.open("http://www.sagentpharma.com/", "", "");
}

function printWindow() {
  window.print();
}

