function No1ResponsibilityPlaceLauncher(p)
{
    var w = 950, h = 560, l = 0, t = 0;
    if(w < screen.width)
    {
        l = (screen.width - w) / 2;
        t = (screen.height - h) / 2;
    }
    else
    {
        h = (screen.width/w) & h;
        w = screen.width;
    }
    testwindow= window.open (p, "No1ResponsibilityPlace", "location=1,status=1,scrollbars=0,width="+w+",height="+h);
    testwindow.moveTo(l,t);
   
}

function PostItCalculatorLauncher(p)
{
    var w = 990, h = 620, l = 0, t = 0;
    if(w < screen.width)
    {
        l = (screen.width - w) / 2;
        t = (screen.height - h) / 2;
    }
    else
    {
        h = (screen.width/w) & h;
        w = screen.width;
    }
    testwindow= window.open (p, "PostitCalculator3M", "location=1,status=1,scrollbars=0,width="+w+",height="+h);
    testwindow.moveTo(l,t);
   
}