//edit the following lines 

var IRinfo = new Array();
function IRLinks(x,y,w,script,desc) {
  var n=IRinfo.length;
	IRinfo[n] = new Array();
	IRinfo[n].xpos=x;
	IRinfo[n].ypos=y;
	IRinfo[n].width=w;
	IRinfo[n].script=script;
	IRinfo[n].desc=desc;
}

var HNMRinfo=new Array()
function HNMRLinks(x,y,w,script){
 var n=HNMRinfo.length;
 HNMRinfo[n]=new Array();
 HNMRinfo[n].xpos=x;
 HNMRinfo[n].ypos=y;
 HNMRinfo[n].width=w;
 HNMRinfo[n].script=script;
}

var CNMRinfo=new Array();
function CNMRLinks(x,y,w,script){
 var n=CNMRinfo.length;
 CNMRinfo[n]=new Array();
 CNMRinfo[n].xpos=x;
 CNMRinfo[n].ypos=y;
 CNMRinfo[n].width=w;
 CNMRinfo[n].script=script;
}

//you should not need to edit the html files.

