﻿// global js for PCC

function openTools(){
    var windowWidth = 670;
    var windowHeight = 600;
    var theTop=(screen.height/2)-(windowHeight/2);
    var theLeft=(screen.width/2)-(windowWidth/2);
    var features="height=" + windowHeight + ",width=" + windowWidth + ",top="+theTop+",left="+theLeft+",status=yes,toolbar=no,menubar=no,location=no,scrollbars";
    window.open("../../Tools/local/files/english/calculator/calculator.html","_blank",features);
}

function openQuiz(){
    var windowWidth = 640;
    var windowHeight = 768;
    var theTop=(screen.height/2)-(windowHeight/2);
    var theLeft=(screen.width/2)-(windowWidth/2);
    var features="height=" + windowHeight + ",width=" + windowWidth + ",top="+theTop+",left="+theLeft+",status=yes,toolbar=no,menubar=no,location=no,scrollbars";
    window.open("../../assessment/Default.aspx","_blank",features);
}