function confirmSubmit(strMessage, strURL) {
	if(confirm(strMessage)) {
		document.location.href=strURL;
	}
}

function jumpTo(sURL) {
	document.location.href=sURL;
}

function getElement(psID) { 
   if(document.all) { 
      return document.all[psID]; 
   } else { 
      return document.getElementById(psID); 
   } 
}