function CorrectFrame(){
	
	if (parent.location.href == self.location.href){
	    // change the url below to the url of the
	    // frameset page...
	    window.location.href = 'http://www.damiencalis.co.uk/cgi-bin/index.pl?link='+self.location.href
	}
}

function CorrectMenuFrame(){
	
	// if browser supports frames
	if(SupportFrames()){
		if (parent.location.href == self.location.href){
	    	// change the url below to the url of the
	    	// frameset page...
	    	window.location.href = 'http://www.damiencalis.co.uk/cgi-bin/index.pl?link='+self.location.href
		}
	}
}

function SupportFrames(){
	var frames=new Boolean();
	
	frames=false;
	
	browser=navigator.appVersion
	if (browser.indexOf("2.")>-1){
		frames=false;
	}
	if (browser.indexOf("3.")>-1){
		frames=true;
	}
	if (browser.indexOf("4.")>-1){
		frames=true;
	}
	return frames
}

