function openlesson( aLessonXML, aWindowTitle ) { 
var OpenWindow=window.open("", "lessonwin", "height=480,width=640");

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=7,0,0,0' WIDTH='640' HEIGHT='480' id='LanguageSkills' ALIGN=''>")
OpenWindow.document.write(" <PARAM NAME=movie   VALUE='preloader.swf?xmlfile=" + aLessonXML + "'> ")
OpenWindow.document.write(" <PARAM NAME=quality VALUE=high> ")
OpenWindow.document.write(" <PARAM NAME=bgcolor VALUE=#FFFFFF> ")
OpenWindow.document.write(" <EMBED src='preloader.swf?xmlfile=" + aLessonXML + "' quality=high bgcolor=#FFFFFF  WIDTH='640' HEIGHT='480' 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()
}