
// frameJammer_hp v2.5

if (self != top)     // frame buster
	top.location.replace(self.location);

function frameJammer_hp(){
	var framedPage = location.search;
	if (framedPage.length > 1){
		framedPage = framedPage.substring(1);
		var theSplit = framedPage.lastIndexOf('~');
		var thePage = framedPage.substring(0,theSplit);
		var theFrame = framedPage.substring(theSplit+1);
		eval("top."+theFrame+".location.replace('"+ thePage+"')");}
	}


// frameJammer_hp End
