function frame_check()
{
	if (top == self) {
		var answer = confirm("My site uses frames, but you've managed to jump outside of them! Click OK to go back to the main page or Cancel to stay as you are")
		if (answer){
			top.location.href = '/main/index.html' ;
		}
  	}
}

