function image_change(image_no,image_pattern){
	var filename=document.images["Image"+image_no].src;
	var arr=filename.split('.');
	var ext=arr[arr.length-1];
	arr[arr.length-1]='';
	filename=arr.join('.');
	filename=filename.substring(0,filename.length-2);
	document.images["Image"+image_no].src=filename+image_pattern+"."+ext;
}

function popupWindow(url){
  popupStyle = 'width=720, ';		// ウィンドウ幅
  popupStyle+= 'height=900, ';		// ウィンドウ高さ
  popupStyle+= 'menubar=no, ';		// メニューバー有無(yes/no)
  popupStyle+= 'toolbar=no, ';		// ツールバー有無(yes/no)
  popupStyle+= 'location=no, ';		// アドレスバー有無(yes/no)
  popupStyle+= 'status=no, ';		// ステータスバー有無(yes/no)
  popupStyle+= 'resizable=yes, ';	// リサイズ可否(yes/no)
  popupStyle+= 'scrollbars=yes ';	// スクロールバー有無(yes/no)
  //url = 'map01.html';	// 呼び出すページ

  window.open(url,'_blink',popupStyle);
}

function PagePrint()
{
  var ieBrowser = document.getElementById;	//IEの場合
  var mzBrowser = document.layers;			//ネスケ、オペラなどの時
  if(ieBrowser || mzBrowser)				//window.printをサポートしているブラウザの時のみ印刷実行
  {
	window.print();	//印刷実行
  }
}

function CloseWin(){
    window.close();
}

function OpenWin(){
    win=window.open("freshers.html","new","width=720,height=1000,scrollbars=yes");
}
