// Frame Reloader - Copyright Connected UK LLP 2004 - www.connected-uk.com

var frameset = 'http://www.eeco-ltd.com/';		// Change this to relative or absolute url of main frameset

// ----- DO NOT CHANGE BELOW THIS LINE ---------------------------------------------------- //

var msg = 'The page you are accessing is part of a frame based site but has been loaded without frames.\n\nPlease click OK to view the page with the correct navigation frames.';

function checkInFrame() {
	var r;
	//if(parent.location.href == document.location.href) {
	if(parent.frames.length == 0) {
		r = false;
	} else {
		r = true;
	}
	return r;
}

function loadFrameset(frameset,msg) {
	if(!checkInFrame()) {
		if(window.confirm(msg)) {
			document.location.href=frameset;
		}
	}
}

setTimeout("loadFrameset(frameset,msg)",1000);
