﻿
function LessonPlayer(id){
    var w; var h; 
    w = "740"; h = "550"; 
    var url = "http://www.hipaatraining.com/freelessonplayer.aspx?id="+id;
    //Parameters url=page to open, w=width, h=height
    window.open(url, "external", "width=" + w +",height=" + h + ",resizable=no,directories=no,scrollbars=no,status=no,titlebar=no,location=no,toolbar=no,menubar=no,left=50,top=0,screenX=50,screenY=0");
}

