if (parseInt(navigator.appVersion) <= 3) { var srcStr = "blank.html" }
else { var srcStr = "about:blank" }
function frameWriter() {
	if (navigator.appName == 'Netscape' && 
			parseFloat(navigator.appVersion) >= 5 && (!window.opera)) {
	    location.href = 'index.html' 
	} 
	else if (navigator.userAgent.indexOf("pera") != -1) { 
		location.replace("http://www.alldido.co.uk/index.html"); 
	}
	else {
	document.write('<frameset rows="53,*,44" FRAMESPACING="0"');
		document.write(' FRAMEBORDER="0" BORDER="0" onLoad="FrameMe();">');
	document.write(' <frame src="top.htm" NORESIZE MARGINHEIGHT="5" NAME="menuFrame"');
		document.write(' SCROLLING="no">');
	document.write(' <FRAME SRC="'+ srcStr +'" NAME="main" NORESIZE>');
	document.write(' <frame src="bottom.htm" NORESIZE MARGINHEIGHT="5" NAME="menuFrame"');
		document.write(' SCROLLING="no">');
	document.write('</FRAMESET>');
	document.write('</HTML>');
	}
}
function FrameMe() {
    if (document.images) {
        top.main.location.replace(self.location.href);
    }
    else {
        top.main.location.href = self.location.href;
    }
	}
if (!(document.layers && (self.innerWidth == 0))) {
    if (top.frames.length != 3) {
        frameWriter()
    }
}