may be easier to just blank out the location.tpl file replacing it with an empty template and to alter the dialog.tpl by changing from:
Code:
<TABLE border=0 cellPadding=2 cellSpacing=0 {$extra}>
<TR>
<TD height="20" class=DialogTitle background="{$ImagesDir}/dialog_bg.gif" valign=bottom>{$title}</TD>
</TR>
<TR><TD class=DialogBorder><TABLE border=0 cellPadding=10 cellSpacing=0 width="100%">
<TR><TD class=DialogBox>{$content}
</TD></TR>
</TABLE></TD></TR>
</TABLE>
to
Code:
<TABLE border=0 cellPadding=2 cellSpacing=0 {$extra}>
<TR>
<TD height="20" class=DialogTitle background="{$ImagesDir}/dialog_bg.gif" valign=bottom></TD>
</TR>
<TR><TD class=DialogBorder><TABLE border=0 cellPadding=10 cellSpacing=0 width="100%">
<TR><TD class=DialogBox>{$content}
</TD></TR>
</TABLE></TD></TR>
</TABLE>
easy
