function setPath(root){
	path = root;
}

function printHead(){
	path = path == null ? "" : path;
	document.write('<table width="100%" border="0" height="5" bgcolor="#330066" cellpadding="0" cellspacing="0">');
	document.write('<tr>');
	document.write('<td><img src="' + path + 'images/spacer.gif" width="1" height="5">');
	document.write('<\/td>');
	document.write('<\/tr>');
	document.write('<\/table>');
	document.write('<table width="100%" border="0" background="' + path + 'images/back_title.gif" cellpadding="0." cellspacing="0" height="65">');
	document.write('<tr align="center" valign="top">'); 
	document.write('<td><img src="' + path + 'images/title.gif" width="640" height="50" alt="ゲーム研究データインデックス">');
	document.write('<\/td>');
	document.write('<\/tr>');
	document.write('<\/table>');
	document.write('<img src="' + path + 'images/spacer.gif" width="1" height="20">');
}

function printCopyright(){
	path = path == null ? "" : path;
      document.write('<br>');
      document.write('<font class="size8">Copyright&copy; 2004-2010 CESA. All rights reserved.<\/font>');
      document.write('<br>');
      document.write('<img src="' + path + 'images/spacer.gif" width="1" height="30">'); 
}