// モバイル用
<!--
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

var nSizeWidth;		
var nSizeHeight;	
var nWinWidth;		
var nWinHeight;		
function GetWindowSize()
{
        nSizeWidth = 0;
	nSizeHeight = 0;
	
	nSizeWidth = screen.width;
	nSizeHeight = screen.height;
	
	//NN
	if (navigator.appName=="Netscape")
	{
		nWinWidth = window.outerWidth;
		nWinHeight = window.outerHeight;
	}
	//IE
	else
	{
		nWinWidth = document.body.offsetWidth;
		nWinHeight = document.body.offsetHeight;
	}
	
	window.moveTo(((nSizeWidth-nWinWidth)/2),((nSizeHeight-nWinHeight)/2));
}
//-->
