﻿// JScript File
function OpenCourse( courseId )
{
    //window.open('course/player.html','_blank','width=800,height=580');
    window.open('CoursePresentation.aspx?CourseId=' + courseId,'_blank','resizable=1,width=800,height=580');
}

function OpenCertificate(pstate, courseId) {
    window.open('Certificate.aspx?pstate=' + pstate + '&CourseId=' + courseId ,'certificate');
}


