// Courier JavaScript

function MM_jumpMenuGo(objId,targ,restore){ //v9.0
  var selObj = null;  with (document) { 
  if (getElementById) selObj = getElementById(objId);
  if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; }
}

function enlarge(ed) {
	var thisEd = document.getElementById(ed);
	var thisImg = document.getElementById(ed + '.gif');
	thisEd.style.width = '140px';
	thisEd.style.height = '215px';
	thisEd.style.margin = '-54px -29px -61px -35px';
	thisEd.style.zIndex = '2';
	thisEd.style.backgroundColor = '#FFF';
	thisEd.style.border = '2px solid #333333';
	thisImg.style.width = "140px";
	thisImg.style.height = "200px";
}

function restore(ed) {
	var thisEd = document.getElementById(ed);
	var thisImg = document.getElementById(ed + '.gif');
	thisEd.style.width = '80px';
	thisEd.style.height = '115px';
	thisEd.style.margin = '0';
	thisEd.style.zIndex = '0';
	thisEd.style.backgroundColor = 'transparent';
	thisEd.style.border = 'none';
	thisImg.style.width = "70px";
	thisImg.style.height = "100px";
}