var addBeforeUnload = {};
var popup = true;


//移動メッセージ表示OFF	
function popup_off (){
	popup = false;
}
	
function do_showhide() {
    var txt = '====================================================' +
              '\n\n' + 
              '　　【限定公開】特別マニュアル！\n' + 
　　　　　　　'\n\n' +
              '　　「驚異の返信率８２％！キラーメール術」\n' + 
              '　　を今だけ完全無料でプレゼントします！\n' +
　　　　　　　'\n\n' +
              '　　「このページにとどまる」をクリックして、\n' +
　　　　　　　'　　今すぐに無料でお受け取り下さい！\n' + 
              '\n\n' +
              '====================================================';
	if(popup == true){
		if(document.all)	{
      document.all('show_rad').style.display = "none";
	  	document.all('show_ps').style.display = "block";
	  }else if(document.getElementById){
	   	document.getElementById('show_rad').style.display = "none";
	   	document.getElementById('show_ps').style.display = "block";
	  }
	  scroll(0, 0);
	  return txt;
		popup_off();
	}
  return;
}

window.onbeforeunload = do_showhide;

