<!-- // START ZOOM AND DE-COLOR CODE AREA



// CHANGE ANY OF THESE VARIABLES TO SET THE ZOOM AND GRAY COLOR









var zoomwidth	= "700"		// AMOUNT TO ZOOM IMAGE IN PIXELS

var IEzoom	= "yes"		// SHOW ZOOM IN INTERNET EXPLORER

var IEDecolor	= "yes"		// SHOW SWITCH TO GRAY IN INTERNET EXPLORER



var FFzoom	= "yes"		// SHOW ZOOM IN FIREFOX



















// COPYRIGHT 2006 © Allwebco Design Corporation

// Unauthorized use or sale of this script is strictly prohibited by law



// YOU DO NOT NEED TO EDIT BELOW THIS LINE











   if (FFzoom == "yes") {

if(navigator.userAgent.indexOf("Firefox")!=-1){

var versionindex=navigator.userAgent.indexOf("Firefox")+8

if (parseInt(navigator.userAgent.charAt(versionindex))>=1)

document.write('<nobr><a href="#" onClick="zoomIn()"><img src="picts/zoom-up.gif" border="0"></a>');

document.write('<a href="#" onClick="zoomReset()"><img src="picts/zoom-down.gif" border="0"></a></nobr><br>');

}

}









   if (IEzoom == "yes") {

browser_version= parseInt(navigator.appVersion);

browser_type = navigator.appName;

if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4) && (navigator.userAgent.indexOf("Windows") != -1)) {

document.write('<nobr><a href="#" onClick="zoomIn()"><img src="picts/zoom-up.gif" border="0"></a>');

document.write('<a href="#" onClick="zoomReset()"><img src="picts/zoom-down.gif" border="0"></a></nobr><br>');

}

}





   if (IEDecolor == "yes") {

browser_version= parseInt(navigator.appVersion);

browser_type = navigator.appName;

if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4) && (navigator.userAgent.indexOf("Windows") != -1)) {

document.write('<nobr><a href="#" onClick="MainImage.style.filter=\'Gray()\'"><img src="picts/color-down.gif" border="0"></a>');

document.write('<a href="#" onClick="MainImage.style.filter=\'none()\'"><img src="picts/color-up.gif" border="0"></a></nobr><br>');

}

}











// FUNCTIONS



function zoomReset() {

  MainImage.style.width = 'auto';

  MainImage.style.height = 'auto';

}





function zoomIn() {

  MainImage.style.width = ''+zoomwidth+'';

}













// END ZOOM CODE -->