<!-- STANDARD SCRIPTS
function SwapImage(ImageToChange, ImageToShow) {
if (document.images) { document[ImageToChange].src = ImageToShow; } }
function bar(message) {
if (document.images) { window.status = message; return true } }
if (document.images) {
}

function PopUp(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function Bookmark(strURL,strTitle) {
 		if (document.all) {
 			window.external.AddFavorite(strURL,strTitle);
 		}
 		else { alert("Sorry. Bookmarking works only in \rInternet Explorer versions 4 and later."); }

 	}