function checkFrames(){
	pageURL=location.pathname;
	if(top.frames.length==0){
		newLoc='/jump.php?p='+escape(pageURL);
		top.location=newLoc;
	}
}

onload=checkFrames;
