I have recently added a domain pointer to point to a Url to another Url in stealth mode. I want to keep the same url in the address bar (shop-florastor.com) and it works for all my regular links but when I use a Jump Menu it goes to the actual Url and does not keep shop-florastor in the address bar. Is there a way to fix this? Here is my jump menu code:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<select name="select" size="1" onChange="MM_jumpMenu('parent',this,0)">
<option value="http://shop-phytopharmica.com/store/Florastor.html">None
<option value="http://shop-phytopharmica.com/store/FlorastorProducts.html">Florastor
<option value="http://shop-phytopharmica.com/store/FlorastorKids.html" selected>Florastor
Kids
</select>
Thanks for your help.