function makerel() {
var apath = this.location.pathname
slash = "/"
arrayOfStrings = apath.split(slash)
// document.write ("apath = " + apath + "<P>")
pops = arrayOfStrings.length - 6
// document.write("number of poppers = " + pops + "<P>")
var rpath =""
for (var i = 0; i < pops; i++) {
rpath = rpath + "../"	
	
}
// document.write("rpath = " + rpath + "images<P>")
return rpath + "images/"
}


function addPageLevel() {
var rpath =""
for (var i = 0; i < pagelevel-1; i++) {
   rpath = rpath + "../"		
}
// document.write("rpath = " + rpath + "images<P>")
return rpath + "images/"
}

// Function to output current calendar year exclusively
function writeCurrYear()
{
var Today=new Date();
var Year=Today.getFullYear();
document.write(Year);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  	window.open(theURL,winName,features);
	}