function CheckFrame() {
	if ((top == self) && (document.location.href.toLowerCase().indexOf('file') < 0)) {
		var topurl = "http://www.tv-service.com/frame.pl?" + location.pathname;
		if ((document.layers) || (document.all) || (document.getElementById)) {
			self.location.replace(topurl);
		}
		else {
			self.location.href = topurl;
		}
	}
}
window.onload = CheckFrame;