<!--

// (C) 2003 CodeLifter.com
// Source: CodeLifter.com
// Do not remove this header

// Set the message for the alert box
am = "This function is disabled!";

// do not edit below this line
// ===========================
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;


function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		button_a_over = newImage("images/button_a-over.jpg");
		web_background_03_button_b_over = newImage("images/web-background_03-button_b_.jpg");
		button_c_over = newImage("images/button_c-over.jpg");
		button_d_over = newImage("images/button_d-over.jpg");
		preloadFlag = true;
	}
}

function newWindow(theURL,winName,features) {
	newWin = window.open(theURL,winName,features)
	newWin.focus();
}
function goToURL(object) {
	if (object.options[object.selectedIndex].value != "blank") {
		window.location.href = "default.aspx?catID=" + object.options[object.selectedIndex].value;
	}
}

-->