function openFlash(flash,width, height){
    var oeTags = '<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="'+height+'" width="'+width+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">'
    + '<param name="movie" value="'+flash+'" />'
    + '<param name="quality" value="high" />'
    + '<param name="wmode" value="opaque" />'
    + '<param name="menu" value="false">'
    + '<embed src="'+flash+'" quality="high" wmode="opaque" width="'+width+'" height="'+height+'" name="makeup" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/>'
    + '<\/object>';

    document.write(oeTags);
}

function openFlash2(flash, txtFile, width, height) {
   var oeTags = '<object codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + width + '" height="' 
   	+ height + '" id="teletype_s3" align="middle" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">' 
	+ '<PARAM NAME=FlashVars VALUE="paramtext=' + txtFileContent + '" />'
	+ '<param name="allowScriptAccess" value="sameDomain" />' 
	+ '<param name="movie" value="'+flash+'" />'  
	+ '<param name="quality" value="high" />'  
	+ '<param name="bgcolor" value="#000033" />'
    + '<param name="wmode" value="opaque" />'
	+ '<embed src="'+flash+'" quality="high" wmode="opaque" bgcolor="#000033" width="'+width+'" height="'+height+'" name="teletype_s3" align="middle" ' 
	+ ' allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" '
	+ ' FlashVars="paramtext=' + txtFileContent + '"/>' 
	+ ' </object>';

    document.write(oeTags);
}

