

function highlight(img, location, desc) {
    if (document.images) {
  document.images[img].src = location + "btn2" + img + ".gif";
    }
 window.status=desc;
 return true;
}

function unhighlight(img, location) {
    if (document.images && img) {
  document.images[img].src = location + "btn1" + img + ".gif";
    } 
 window.status="Solventis";
 return true;
}

function popUp(url) {
    sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
 self.id = "mainWin";
}

function updateFees() {
 try
      {
		var feeTotal = 0;
		feeTotal = parseInt(document.all.txtRegFee.value);
		if(document.all.lstLaptop.value == "rent") {
			feeTotal += parseInt(document.all.txtLaptopFee.value);
		}
	
		document.all.tdTotalFees.innerText = "$" + feeTotal.toString();	
      }
 catch(errorObject)
      {}
	
}

