// Menu Items


 function fnimageON(strIMAGE){
 	document.images[strIMAGE].src='images/' + strIMAGE + '_on.gif'; 
 }
 
 function fnimageOFF(strIMAGE){
 	document.images[strIMAGE].src='images/' + strIMAGE + '.gif'; 
 }
 
 // Popup Window
 
 function openwin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}