
window.onload = function() {
	myDate = new Date();
	myyear=myDate.getFullYear();
		if (myyear < 1000) {
		myyear += 1900;
		}
	//document.write(myyear);
	document.getElementById('copyright').innerHTML = 'Copyright&nbsp;&copy;&nbsp;2009&nbsp;-&nbsp;'+myyear+'&nbsp;F-map.&nbsp;All&nbsp;rights&nbsp;reserved.'; 
}//function - end-

/*================================================*/
//既にonload関係が使われている場合用（上記と同じ処理）
function realCopy() {
	myDate = new Date();
	myyear=myDate.getFullYear();
		if (myyear < 1000) {
		myyear += 1900;
		}
	//document.write(myyear);
	document.getElementById('copyright').innerHTML = 'Copyright&nbsp;&copy;&nbsp;2009&nbsp;-&nbsp;'+myyear+'&nbsp;F-map.&nbsp;All&nbsp;rights&nbsp;reserved.'; 
}//function - end-
/*================================================*/

/********************************/

function runSwf( swfuri, width, height ) {

	var html = ""
		html += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab\" width=\"" + width + "\" height=\"" + height + "\">"
		html += "<param name=\"movie\" value=\"" + swfuri + "\">"
		html += "<param name=\"quality\" value=\"high\">"
		html += "<embed src=\"" + swfuri + "\" quality=\"high\" width=\""+ width + "\" height=\"" + height + "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>"
		html += "</object>"

	document.write( html );
  
}//function - end-

/********************************/


