function openlesson( aLessonXML, aWindowTitle ) { 
var OpenWindow=window.open("", "_self", "");

OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<HEAD>")
OpenWindow.document.write("<TITLE>" + aWindowTitle + "</TITLE>")
OpenWindow.document.write("</HEAD>")
OpenWindow.document.write("<BODY bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' >")
OpenWindow.document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' WIDTH='821' HEIGHT='587' id='LanguageSkills' ALIGN=''>")
OpenWindow.document.write(" <PARAM NAME=movie   VALUE='http://www.curriculumassociates.com/professional-development/topics/Higher-Order-Thinking/lesson.swf?xmlpath=" + aLessonXML + "'> ")

OpenWindow.document.write(" <PARAM NAME='base' value='http://www.curriculumassociates.com/professional-development/topics/Higher-Order-Thinking/'>  ")

OpenWindow.document.write(" <PARAM NAME=quality VALUE=high> ")
OpenWindow.document.write(" <PARAM NAME=bgcolor VALUE=#FFFFFF> ")
OpenWindow.document.write(" <EMBED base='http://www.curriculumassociates.com/professional-development/topics/Higher-Order-Thinking/' src='http://www.curriculumassociates.com/professional-development/topics/Higher-Order-Thinking/lesson.swf?xmlpath=" + aLessonXML + "' quality=high bgcolor=#FFFFFF  WIDTH='821' HEIGHT='587' NAME='langskills' ALIGN='' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED> ")
OpenWindow.document.write("</OBJECT>")
OpenWindow.document.write("</BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
}