Disable frame loading

Add following script to footer.tpl to avoid your site loaded in frame.

Code:
{literal}
<script language="JavaScript" type="text/javascript">
if (top.location != location) {
    top.location.href = document.location.href ;
}
</script>
{/literal}


HOWTO