function breakout(){
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
	
}

function bubbleup(){

	if(window.opener){
		if(window.opener.location){
			window.opener.location.href = document.location.href;
			window.close();
		}
	}
}

function breakout(frame){

	if(!frame)
		frame = top;
	if (frame.location != location) {
	    frame.location.href = document.location.href ;
  	}
}
