

<!--
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }

  	scrollbars = "1";

	str  = "";
	str += "resizable=1,titlebar=0,menubar=0,";
	str += "toolbar=0,location=0,directories=0,status=0,";
	str += "scrollbars=" + scrollbars + ",";
	str += "width=" + width + ",";
	str += "height=" + height + ",";
	str += "top=" + top + ",";
	str += "left=" + left;

  popUpWin = open(URLStr, 'popUpWin', str);
}


function mImgHover(imgName) 
{ 
	if (document.images) 
	{ 
	imgOn=eval(imgName + "on.src"); 
	document[imgName].src= imgOn; 
	} 
} 

function mImgOff(imgName) 
{ 
	if (document.images) 
	{ 
	imgOff=eval(imgName + "off.src"); 
	document[imgName].src= imgOff; 
	} 
} 

function mImgClickDown(imgName) 
{ 
	if (document.images) 
	{ 
	imgDown=eval(imgName + "down.src"); 
	document[imgName].src=imgDown; 
	} 
} 



//-->

