<!-- // Begin Code
function RestoreFrame() {
	if (parent.location.href == self.location.href) {
	    if (window.location.href.replace)
	        window.location.replace('default.html');
	    else
	        // causes problems with back button, but works
	        window.location.href = 'default.html';
	}
}
// End --> 