if (document.images)
{
	button1off= new Image(113,47);
	button1off.src="img/button1.jpg";
	button1on= new Image(113,47);
	button1on.src="img/button1p.jpg";    
	
	button2off= new Image(179,47);
	button2off.src="img/button2.jpg";
	button2on= new Image(179,47);
	button2on.src="img/button2p.jpg";
	
	button3off= new Image(132,47);
	button3off.src="img/button3.jpg";
	button3on= new Image(132,47);
	button3on.src="img/button3p.jpg";
	
	button4off= new Image(169,47);
	button4off.src="img/button4.jpg";
	button4on= new Image(169,47);
	button4on.src="img/button4p.jpg"; 
	
	button5off= new Image(277,47);
	button5off.src="img/button5.jpg";
	button5on= new Image(277,47);
	button5on.src="img/button5p.jpg"; 
	
	button6off= new Image(110,47);
	button6off.src="img/button6.jpg";
	button6on= new Image(110,47);
	button6on.src="img/button6p.jpg";    
	
	button7off= new Image(110,47);
	button7off.src="img/button7.jpg";
	button7on= new Image(110,47);
	button7on.src="img/button7p.jpg";         
}

function glow(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function glowoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

// -- Javascript image popup
function popUp(URL,x,y) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + x + ",height=" + y + "');");
}

