// JavaScript Document

<!-- CHIMAIRASYSTEM -->
function SwapImage(img) {
	obj = document.getElementById("image");
	obj.src = img;
}

function WinOpen( URL ) {
	window.open(URL,'','scrollbars=yes,resizable=no,width=880,height=900,top=0,left=0');
}

function WinOpen_Gravure( URL ) {
	window.open(URL,'','scrollbars=yes,resizable=no,width=700,height=800,top=0,left=0');
}

function WinOpen_Mail( URL ) {
	window.open(URL,'','scrollbars=yes,resizable=no,width=660,height=460,top=0,left=0');
}
function WinOpen_ticket( URL ) {
	window.open(URL,'','scrollbars=yes,resizable=no,width=600,height=800,top=0,left=0');
}

function print_out() {
  
   if (navigator.userAgent.match(/msie (\d)/i))
      v = (eval(RegExp.$1) >= 5) ? 1 : 0;
   else if (self.innerWidth)
      v = (eval(navigator.appVersion.charAt(0)) >= 4) ? 1 : 0;
   else v = 0;

   
   if (v) self.print();
   else alert("お使いのブラウザではこの機能は利用できません");
}