<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/civiltop_on.gif",
"images/structuraltop_on.gif",
"images/environtop_on.gif",
"images/projplantop_on.gif",
"images/resourcetop_on.gif"
);

var imgs = new Array();

var count
if (document.images)

 for (count=0; count<imglist.length; count++)
    {imgs[count]=new Image(); imgs[count].src=imglist[count];}

// Navigation buttons

if(document.images){
   loadciviltop=new Image()
   loadciviltop.src='images/civiltop_on.gif'
   loadstructuraltop=new Image()
   loadstructuraltop.src='images/structuraltop_on.gif'
   loadenvirontop=new Image()
   loadenvirontop.src='images/environtop_on.gif'
   loadprojplantop=new Image()
   loadprojplantop.src='images/projplantop_on.gif'
   loadresourcetop=new Image()
   loadresourcetop.src='images/resourcetop_on.gif'
}

//-->