Помогите я во флэш не шарю. Но у меня случилась такая проблема. Мне надо выложить на страницу HTML одну таблицу и JS скрипт, но в редакторе сайта есть изначальный косяк который удаляет из кода JS скрипты((( так как редактор сам на JS написан. Подскажите могу ли я вставить во флэш HTML и JS вот текст который надо вставить. помогите плиззз!

Код:
<html>
<head>
<title>Images</title>
</head>
<body>
<Script Language="JavaScript">
if (navigator.appVersion.indexOf("2.") != -1){check = false;}
if ((navigator.appVersion.indexOf("3.") != -1)
&& (navigator.appName.indexOf("Explorer") != -1))
{check = false;} else {check = true;}
origimage = new Image;
origimage.src = "/img/up/blank.gif";
image1on = new Image;
image1on.src = "/img/up/kart_tip6_over.gif";
image2on = new Image;
image2on.src = "/img/up/kart_tip5_over.gif";
image3on = new Image;
image3on.src = "/img/up/kart_tip4_over.gif";
image4on = new Image;
image4on.src = "/img/up/kart_tip3_over.gif";
image5on = new Image;
image5on.src = "/img/up/kart_tip2_over.gif";
image6on = new Image;
image6on.src = "/img/up/kart_tip1_over.gif";
function imageon(name){document.altimg.src = eval(name + "on.src");}
function imageoff(name){document.altimg.src = eval(name + ".src");}
function on(name){if (check == true){imageon(name);}}
function off(name){if (check == true){imageoff(name);}}
</Script>
<script language="JavaScript" type="text/javascript" src="/img/up/kart.js">
<table width="100%" border="0" cellspacing="0" cellpadding="10">
<tr>
<td width="380"><img alt="" src="/img/up/kart1.gif" usemap="#map" border="0" height="370" width="309">
<map name="map">
<area onMouseOver="on('image1'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt="" coords="115,315,206,358" href="#">
<area onMouseOver="on('image2'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt=""coords="0,185,68,332" href="#">
<area onMouseOver="on('image3'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt="" coords="203,159,306,212" href="#">
<area onMouseOver="on('image4'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt="" coords="216,319,309,358" href="#">
<area onMouseOver="on('image5'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt="" coords="212,3,307,43" href="#">
<area onMouseOver="on('image6'); return true;" onMouseOut="off('origimage'); return true;" shape="RECT" alt="" coords="35,3,158,52" href="#">
</map></td>
<td valign="top"><img src="/img/up/blank.gif" name="altimg"></td>
</tr>
</table>
</Script>
</body>
</html>