/* MSIE ONLY BREAK OUT OF FRAMES */
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
	if (self != top) {
		if (document.images)
			top.location.replace(window.location.href);
		else
			top.location.href = window.location.href;
	}
}