// Function to allow creation of other resources as another JS, CSS, and HREF.function IncludeJavaScript(jsFile){		document.write('<script type="text/javascript" src="' + jsFile + '"></script>'); }function IncludeStyleSheet(cssFile){		document.write('<LINK href=' + cssFile +' rel="stylesheet" type="text/css">');}function writehref( varHREF, varValue ) {	vartmp = '<a href=/'	vartmp += varHREF	vartmp +='>'	if (varValue != "")		vartmp += 	varValue	document.write( vartmp )}function bgImage(varElement, varURL) {	vartmp = 'document.getElementById("' + varElement + '").style.backgroundImage = "url("' + varURL + '")"'; 	document.write( vartmp )}// Executed to get all Global Variables IncludeJavaScript( varTransFile );// Functions to help with translationfunction changeSrc(varObject, varName, varWidth, varHeight) {	document.getElementById(varObject).src= varImgPath  + varName	if (varWidth != undefined)	{		document.getElementById(varObject).width = varWidth	}	if (varHeight != undefined)	{		document.getElementById(varObject).height  = varHeight	}}function changeValue(varObject, varName) {	document.getElementById(varObject).value = varName;}function MultiDimensionalArray(iRows,iCols){var i;var j;   var a = new Array(iRows);   for (i=0; i < iRows; i++)   {       a[i] = new Array(iCols);       for (j=0; j < iCols; j++)       {           a[i][j] = "";       }   }   return(a);} function getYear(){	RightNow = new Date();	var TheYear = RightNow.getYear()	if (TheYear >= 100 && TheYear <= 1999)		{TheYear=TheYear + 1900}	else		{TheYear=TheYear}	return  TheYear}