Ok, now I see the error
Please, test this code (this is going to fix the tintin74 problem too) and tell if it works to upgrade the "release"
The damn code BBCode don't seems to work...
<script type="text/javascript">
function checkURL()
{
if ((url.indexOf("http://")!=url.lastIndexOf("http://"))||url.lastIndexOf("http://")!=0){return false;}
if (url.indexOf('"')>=0) {return false;}
if (url.indexOf("http://maps.google")!=0){return false;}
return true
}
tot='';
tot_ini="{param}";
tot_no_quo=tot_ini.replace(/"/g,'"');
if(tot_no_quo.indexOf("[url=")>0)
{ tot=tot_no_quo.substr(tot_no_quo.indexOf('[url="')+6,tot_no_quo.length);}
else
{ tot=tot_no_quo.substr(tot_no_quo.indexOf('src="')+ 5,tot_no_quo.length);}
url=tot.substr(0,tot.indexOf('"'));
urlp=url.replace(/amp;/g,'');
url=urlp;
if (checkURL())
{
document.write('<iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'+url+'"></iframe>');
}
else
{
document.write("<p><b>Wrong map URL, edit the post to change it.</b></p>Reload the page when finished to check if correct.");
}
</script>