/*** Beginning of JavaScript ***/

 function dispChange(id) {
								
  if(id.style.display=="none"){
    id.style.display="block";	
  }
  else{
   id.style.display="none";
  }	
 }								
				
var popUpWinId = 0;  //ポップアップウィンドウ番号
  //コンストラクタ
function popUpWin(){}
new popUpWin( "", 0, 0 );   // ダミー
  //デフォルト・プロパティ
popUpWin.prototype.width  = 400;
popUpWin.prototype.height = 400;
  /*メソッドOpenBySize()の定義
     ステータスバーの無いポップアップウィンドウをサイズを指定して開く*/
function popUpWin_OpenBySize( href, width, height ){
  var str = "scrollbars=1,width=" + width + ",height= " + height;
  popUpWinId = window.open( '', 'popwin', str );
  popUpWinId.location.href = href;
  return( this );
}
  //OpenBySize()メソッドを設定
popUpWin.prototype.OpenBySize = popUpWin_OpenBySize;
  //オブジェクトの生成
win = new popUpWin();


/*** ----- End of JavaScript ----- ***/


