// POPUP [SIMULATION GAME 01]
function popup($url,$windowname,$width,$height,$scrollbars,$resizable){
	var $window;
	var $left = ((screen.availWidth/2)-($width/2));
	var $top  = ((screen.availHeight/2)-($height/2));
	if($top<0) $top = 0;
	$windowProperty = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scarollbars='+$scrollbars+',resizable='+$resizable+',width='+$width+',height='+$height+',top='+$top+',left='+$left;
	$window = window.open($url,$windowname,$windowProperty);
	$window.focus();
}

// UNDER CONSTRUCTION
function underconstruction(){
	alert('準備中.....\nしばらくお待ち下さい。');
}

// COPYRIGHT
function show_copyright($imgdir,$fileheader,$sw1,$sw2,$sw3,$sw4,$sw5){
	var $yearSince = '2003';
	var $yearThisYear = new String(new Date().getFullYear());
	document.write('<p><img src="'+$imgdir+$fileheader+'s01.gif" alt="This is the recruiting web site for an employment." width="'+$sw1+'" height="7" /></p>');
	document.write('<p><img src="'+$imgdir+$fileheader+'s02.gif" alt="Copyright [C]" width="'+$sw2+'" height="7" />');
	for($i=0;$i<4;$i++){
		if($yearSince.charAt($i)==1) $imgW = 3;
		else                         $imgW = 5;
		document.write('<img src="'+$imgdir+$fileheader+'n0'+$yearSince.charAt($i)+'.gif" alt="'+$yearSince.charAt($i)+'" width="'+$imgW+'" height="7" />');
	}
	document.write('<img src="'+$imgdir+$fileheader+'n10.gif" alt="-" width="5" height="7" />');
	for($i=0;$i<4;$i++){
		if($yearThisYear.charAt($i)==1) $imgW = 3;
		else                            $imgW = 5;
		document.write('<img src="'+$imgdir+$fileheader+'n0'+$yearThisYear.charAt($i)+'.gif" alt="'+$yearThisYear.charAt($i)+'" width="'+$imgW+'" height="7" />');
	}
	document.write('<img src="'+$imgdir+$fileheader+'s03.gif" alt="NICHIHA CORPORATION." width="'+$sw3+'" height="7" /><img src="'+$imgdir+$fileheader+'s04.gif" alt="All rights reserved." width="'+$sw4+'" height="7" /></p>');
	document.write('<p><img src="'+$imgdir+$fileheader+'s05.gif" alt="No reproduction or republication without written permission." width="'+$sw5+'" height="7" /></p>');
}
