function openSIM( windowTitle, dcrFile, configFile ) { 
var OpenWindow=window.open("", "lessonwin", "height=604,width=804");
	OpenWindow.document.write('<HTML>');
	OpenWindow.document.write('<HEAD>');
	OpenWindow.document.write('<TITLE>' + windowTitle + '</TITLE>');
	OpenWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	OpenWindow.document.write('</HEAD>');
	OpenWindow.document.write('<BODY bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >');
	OpenWindow.document.write('<OBJECT classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"');
	OpenWindow.document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=8,5,1,0"');
	OpenWindow.document.write(' ID=shockSIM WIDTH=800 HEIGHT=600>');
	OpenWindow.document.write('<PARAM NAME=src VALUE="'+ dcrFile + '">');
	OpenWindow.document.write('<PARAM NAME=swStretchStyle VALUE=none>');
	OpenWindow.document.write('<PARAM NAME=sw1 VALUE="'+ configFile + '">');
	OpenWindow.document.write('<PARAM NAME=swRemote VALUE="">');
	OpenWindow.document.write('<PARAM NAME=bgColor VALUE=#EAF5F3>');
	OpenWindow.document.write('<EMBED SRC="'+ dcrFile + '"');
	OpenWindow.document.write(' bgColor=#EAF5F3 name="shockSIM" swLiveConnect=TRUE  width=800 height=600 swStretchStyle=none ');
	OpenWindow.document.write(' swRemote="" ');
	OpenWindow.document.write(' sw1="'+ configFile +'"');
	OpenWindow.document.write(' type="application/x-director" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/">');
	OpenWindow.document.write('</EMBED>');
	OpenWindow.document.write('</OBJECT>');
	OpenWindow.document.write('</BODY>');
	OpenWindow.document.write('</HTML>');
	OpenWindow.document.close();
}
