
<!--
var newURL = self.location.protocol + '//' + self.location.host + self.location.pathname.substring(0,self.location.pathname.lastIndexOf('/')) + '/index1.html?menu.html&' + self.location.pathname.substring(self.location.pathname.lastIndexOf('/')+1,self.location.pathname.length);

function dispFramed() {
    self.location.href = 'framed.htm';
    if (self.location.href.indexOf('framed.htm') == -1) setTimeout ('dispFramed()', 3000);

}
function checkforframe() {
    if (document.images && document.layers) {
        if (self.innerHeight == 0 && self.innerWidth  == 0) return;
    }
    if ((top == self) || ((document.images) ? (parent.MdGFrame ? false : true) : (parent.frames[1].name != 'MdGFrame'))) {
        if (document.images) {
            top.location.replace(newURL);
            if (navigator.userAgent.indexOf('Opera') > 0) {
                setTimeout('window.open(newURL,"MdGFrame")',8000);
                setTimeout('dispFramed()',10000);
            }
        }
        else top.location.href = newURL;
    }
}

var ua = navigator.userAgent.toLowerCase();

if (navigator.appName == 'Microsoft Internet Explorer' && ua.indexOf('mac') > 0 && ua.indexOf('3.01') > 0) setTimeout ('checkforframe()', 3000);
//-->
