/*---------------------------------------------
Window Open js 
-------------------------------------------- */
function m_win(url,windowname,width,height) {
 var features="location=no, menubar=yes, scrollbars=yes, resizable=yes, toolbar=yes";
 if (width) {
  if (window.screen.width > width)
   features+=", left="+(window.screen.width-width-20)/2;
  else width=window.screen.width;
  features+=", width="+width;
 }
 if (height) {
  if (window.screen.height > height)
   features+=", top="+(window.screen.height-height-140)/2;
  else height=window.screen.height;
  features+=", height="+height;
 }
 window.open(url,windowname,features);
}

/*
	ポップアップで出てきた画面を閉じる
	IE6が閉じてくれないので直書きすることに。
	$(function(){
	
		//クラス.pageCloseの中のaを押すと画面が閉じる
		$('.pageClose a').click(function(){
			window.close();
			return false;
		})
	
	});
*/


function close_win(){
	window.close();
}

