<!--
var tp_image_path = "../images/buttons/"

if (document.images) 
  {
	// On images
	image1on = new Image();
	image1on.src = tp_image_path + "oval_ezine_dn.jpg";
  
  
	// Off images
	image1off = new Image();
	image1off.src = tp_image_path + "oval_ezine_up.jpg";

  }
 
function act(imgName, imgNum) {

  if (document.images)
    document[imgName].src = eval(imgName + 'on.src')
  }

function inact(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + 'off.src')
  }

// -->
