<!--
function checkframes(){
	if (parent.location.href != window.location.href
		&& parent.location.href != valid_parent) {
		setTimeout("parent.location.replace(window.location.href)", 2000);
		document.write('<h1 align="center">This page cannot be viewed within frames.</h1><p>Please Click <a href="'+window.location.href+'" alt="Redirect" target="_top">Here</a> if you are not automaticly redirected.<br>');
	}
}	// check if site is in a frame and redirect page to top frame after 2 seconds

checkframes();

//-->