function OnInitializePage( bDate )
{
	if(typeof(DocRoot) == "undefined")
		DocRoot = "../";

	document.body.background = DocRoot + "whitetile.jpg";

	if(bDate)
	{
		var work, weekname, monthname, moddate;
		weekname = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
		monthname = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
		moddate = new Date(document.lastModified);
		
		work = weekname[moddate.getDay()] + ", ";
		work += monthname[moddate.getMonth()]+" "+moddate.getDate().toString();
		switch(moddate.getDate())
		{
			case 1: case 21: case 31:
			work += "st"; break;
			case 2: case 22:
			work += "nd"; break;
			case 3: case 23:
			work += "rd"; break;
			default:
			work += "th";
		}
		ModifiedDate.innerText += work + " ," + moddate.getFullYear();
	}
}

function CreateStandardFormatPage(path_to_root)
{
	var buffer;
	
	DocRoot = path_to_root;
	
	document.body.innerHTML = "<H1 align='center'>" + document.title + "</H1><DIV ID='ModifiedDate' align='right'>Last update : </DIV><HR>" + document.body.innerHTML + "<HR><CENTER><P><a href='http://www.ertl.jp/~takayuki/top.html'><img src='" + DocRoot + "tree.gif' align='right' border=0></a><A HREF='javascript:history.back()'>もどる</A></P></CENTER><HR><P ALIGN='right'>このページに関するご意見はこちらへ</p><p align='right'>(たぶん) 豊橋技術科学大学 工学研究科 電子・情報工学専攻<BR><a href='mailto:takayuki@ertl.jp'>わかばやし たかゆき</a></p>";
	
	OnInitializePage( true );
	document.body.style.display="block";
}


