// (C) 2003 CodeLifter.com // Source: CodeLifter.com // Do not remove this header // Set the message for the alert box am = "Right-click 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 btnHigh( btnName, hgh ) { // Display correct button - hgh = 0 = normal button // hgh = 1 = highlight button var obtn = document.getElementById(btnName); if (hgh) { obtn.src = btnName + "_on.jpg"; } else { obtn.src = btnName + ".jpg"; } } function picHigh( picName, hgh ) { // Display correct button - hgh = 0 = default picture // hgh = 1 = selected picture var obtn = document.getElementById('ColorExample'); if (hgh) { obtn.src = picName + ".JPG"; } else { obtn.src = picName + ".JPG"; } } function preloadimages() { // List all images to preload var pictures = new Array ( "srfavors_background2.jpg" ,"web_top.jpg" ,"web_logo_plain_1_1.jpg" ,"web_logo_1_2h.jpg" ,"web_button_home.jpg" ,"web_button_home_on.jpg" ,"web_button_contact.jpg" ,"web_button_contact_on.jpg" ,"web_button_FAQ.jpg" ,"web_button_FAQ_on.jpg" ,"web_button_products.jpg" ,"web_button_products_on.jpg" ); // Load each image in array for (i=0;i