// Open a print window myWindow = window.open("","Print","width=900,height=700,scrollbars=0,resizable=0"); // Get variables from StoryLine. Use the 2nd line below as a guide & add all the variables you will need. var player=GetPlayer(); var course=player.GetVar("CourseName"); // Create the contents. Use the 2nd line below as a guide & add all the HTML you will need. var contents =' contents+='’; contents+=’'; // Write the contents to the window and execute the print command. myWindow.document.write(contents); myWindow.document.close(); myWindow.focus(); myWindow.print();