if (self != top)     // frame buster, may be removed
	top.location.replace(self.location);

function frameJammer_hp(){
	var framedPage = location.search;
	if (framedPage.length > 1 && framedPage.indexOf("://") == -1){
		framedPage = framedPage.substring(1);
		var theSplit = framedPage.lastIndexOf('~');
		if (theSplit > 0){ 
			var thePage = framedPage.substring(0,theSplit);
		// insert anchor code here if required (see Help)
			var theFrame = framedPage.substring(theSplit+1);
			alert("|"+theFrame+"| - |"+theSplit+"|");
			eval("top."+theFrame+".location.replace('"+ thePage+"')");}
		}
	}

