﻿/* Avoids the page to be executed in a iframe 
   This is necessary for links to main pages in iframes (or add target="_parent")
*/
if (top != self) {
 top.location.href = location.href;
}

