//====================================================================
//init
	var flg_print =0;

//====================================================================

function m_win(url,windowname,width,height) {
 var features="location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
 if (width) {
  if (window.screen.width > width)
   features+=", left="+(window.screen.width-width)/2;
  else width=window.screen.width;
  features+=", width="+width;
 }
 if (height) {
  if (window.screen.height > height)
   features+=", top="+(window.screen.height-height)/2;
  else height=window.screen.height;
  features+=", height="+height;
 }
 window.open(url,windowname,features);
}

//====================================================================
function set_css(){
	param = location.search.replace("?", "");
	if(param =="print"){
		document.write("<link rel=\"stylesheet\" href=\"../css/print.css\" type=\"text/css\" />");
		flg_print =1;
		self.focus();
	}
}

//====================================================================
function chk_print(){
	if(flg_print ==1){
		document.getElementById("action_print").innerHTML = "<div class=\"btn_print\"><a href=\"javascript:window.print()\">このページをプリントする</a></div>";
	}
}


//====================================================================
// document.getElementById
function $(tagId){
	return document.getElementById(tagId);
}


set_css();

