﻿/*

###################################

#writing footer method

###################################

*/

function writetxtfooter(){

	var this_year = new Date();

	var match_year = this_year.getFullYear();



	if( match_year > 2006 ) var start_year='2006-';

	else var start_year= '';



	document.open("text/html");

	document.write( start_year + match_year );

	document.close();

}



/*

###################################

#writing footer method

###################################

*/

function writeimgfooter(path){

	var is = new Is_env(); 

	var target = new Date();

	var year = new Array();



	if(!is.NN40X_LOW){

		var _year = target.getFullYear();



		for(i=0; i<4; i++){

			year[i] = (_year.toString()).substring(i, i+1);

		}

	}else{

		if( target.getYear() >= 2000 ) var _year = target.getYear();

		else var _year = target.getYear()+1900;



		for(i=0; i<4; i++){

			year[i] = (_year.toString()).substring(i, i+1);

		}

	}



	if( _year > 2006 ) var start_year='2006-';

	else var start_year='';



	document.open("text/html");

	document.write('<address title="Copyright(c) '+ start_year + _year +' National Institute For Sea Training. All Rights Reserved.">');

	document.write('<img src="'+path+'img/common/footer_top.gif" width="431" height="44" border="0">\n');

	document.write('<img src="'+path+'img/common/footer_left.gif" width="79" height="24" border="0">');

	if( _year > 2006 ){

		document.write('<img src="'+path+'img/common/c2.gif" width="7" height="24" border="0">');

		document.write('<img src="'+path+'img/common/c0.gif" width="7" height="24" border="0">');

		document.write('<img src="'+path+'img/common/c0.gif" width="7" height="24" border="0">');

		document.write('<img src="'+path+'img/common/c6.gif" width="7" height="24" border="0">');

		document.write('<img src="'+path+'img/common/hifun.gif" width="11" height="24" border="0">');

	}

	document.write('<img src="'+path+'img/common/c'+year[0]+'.gif" width="7" height="24" border="0">');

	document.write('<img src="'+path+'img/common/c'+year[1]+'.gif" width="7" height="24" border="0">');

	document.write('<img src="'+path+'img/common/c'+year[2]+'.gif" width="7" height="24" border="0">');

	document.write('<img src="'+path+'img/common/c'+year[3]+'.gif" width="7" height="24" border="0">');

	document.write('<img src="'+path+'img/common/footer_last.gif" width="285" height="24" border="0">\n');

	document.write('</address>');

	document.close();



}
