// frameJammer_hp v3.3.1
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('~');
		var theFrame = framedPage.substring(theSplit+1);
		var thePage = framedPage.substring(0,theSplit);
	// uncomment anchor code if required (see Help)
	/*
	if (theFrame.indexOf('@') !=-1){  // checks for anchor
		re=/(\S+)@(\S+)/
		theArray = re.exec(theFrame);
		thePage=thePage+'#'+theArray[2];
		theFrame = theFrame.substring(0,theFrame.indexOf('@'));
		}
	*/

		eval('top.frames["'+theFrame+'"].location.replace("'+ thePage +'");');
		}
	}
// frameJammer_hp End