We shall name a day after u

Thanx a million times. U pointed me to that error and now it is solved. It's not pretty but IT works. Here's a sample if some one else has the same problem.
<form action="<?php echo $mosConfig_live_site;?>/index.php" name="templateform" method="post">
<input value="layout_blue" type="image" SRC="<?php echo $mosConfig_live_site;?>/templates/layout_blue/images/buttons_05.gif" onClick="this.form.mos_change_template.value = 'layout_blue'">
<input value="layout_grey" type="image" SRC="<?php echo $mosConfig_live_site;?>/templates/layout_blue/images/buttons_03.gif" onClick="this.form.mos_change_template.value = 'layout_grey'">
<input value="layout_lila" type="image" SRC="<?php echo $mosConfig_live_site;?>/templates/layout_blue/images/buttons_02.gif" onClick="this.form.mos_change_template.value = 'layout_lila'">
<input value="layout_orange" type="image" SRC="<?php echo $mosConfig_live_site;?>/templates/layout_blue/images/buttons_01.gif" onClick="this.form.mos_change_template.value = 'layout_orange'">
<input value="layout_red" type="image" SRC="<?php echo $mosConfig_live_site;?>/templates/layout_blue/images/buttons_04.gif" onClick="this.form.mos_change_template.value = 'layout_red'">
<input type="hidden" name="submit" value="Valitse">
<input type="hidden" name="mos_change_template" value="">
</form>
so i added on onclick event that changes the value of hidden field named mos_change_template. So after this IE sends cordinates AND the value. It could be wiser to name those image input names to somethin else. 'Cos in FF it's doubled. And thanx again.
-Aptonic