function OpenFrames() {
	if (self != top && top.m440326) {
		if (document.all) {
			document.all.WithFrames.style.visibility = "hidden";
			}
		else if (document.layers) {
			document.LayFrames.visibility = "show"; 
			}
		else if (document.getElementById) {
			document.getElementById("WithFrames").style.visibility = "hidden";
			}
		return;
		}
	top.location.replace(document.links[0].href);
	}
