			<!--
			        if (document.images) {            // Active Images
			            img1on = new Image();      
			            img1on.src = "../images/layout/header_02_roll.png"; 
			            img2on = new Image(); 
			            img2on.src = "../images/layout/header_03_roll.png"; 
			            img3on = new Image();
			            img3on.src = "../images/layout/header_04_roll.png"; 
			            img4on = new Image();
			            img4on.src = "../images/layout/header_05_roll.png"; 
			            img5on = new Image();
			            img5on.src = "../images/layout/header_09_roll.gif"; 
			            img6on = new Image();
			            img6on.src = "../images/layout/header_12_roll.gif"; 
			            img7on = new Image();
			            img7on.src = "../images/layout/footer_02_roll.png"; 
						img8on = new Image();
			            img8on.src = "../images/layout/footer_03_roll.png"; 
						img9on = new Image();
			            img9on.src = "../images/layout/footer_04_roll.png"; 
						img10on = new Image();
			            img10on.src = "../images/layout/footer_05_roll.png"; 
						img11on = new Image();
			            img11on.src = "../images/layout/footer_06_roll.png"; 
						img12on = new Image();
			            img12on.src = "../images/layout/footer_07_roll.png"; 
						img13on = new Image();
			            img13on.src = "../images/layout/leftnav_software_hover.png"; 
						img14on = new Image();
			            img14on.src = "../images/layout/leftnav_accessories_hover.png"; 
						
			            img1off = new Image(); 
			            img1off.src = "../images/layout/header_02.png"; 
			            img2off = new Image();          
			            img2off.src = "../images/layout/header_03.png"; 
			            img3off = new Image();
			            img3off.src = "../images/layout/header_04.png"; 
			            img4off = new Image();
			            img4off.src = "../images/layout/header_05.png"; 
			            img5off = new Image();
			            img5off.src = "../images/layout/header_09.png"; 
						img6off = new Image();
			            img6off.src = "../images/layout/header_12.png"; 
						img7off = new Image();
			            img7off.src = "../images/layout/footer_02.png"; 
			            img8off = new Image();
			            img8off.src = "../images/layout/footer_03.png"; 
						img9off = new Image();
			            img9off.src = "../images/layout/footer_04.png"; 
						img10off = new Image();
			            img10off.src = "../images/layout/footer_05.png"; 
						img11off = new Image();
			            img11off.src = "../images/layout/footer_06.png"; 
						img12off = new Image();
			            img12off.src = "../images/layout/footer_07.png"; 
						img13off = new Image();
			            img13off.src = "../images/layout/leftnav_software.png"; 
						img14off = new Image();
			            img14off.src = "../images/layout/leftnav_accessories.png"; 
			        }


			// Function to 'activate' images.

			function imgOn(imgName) {
			        if (document.images) {
			            document[imgName].src = eval(imgName + "on.src");
			        }
			}

			// Function to 'deactivate' images.

			function imgOff(imgName) {
			        if (document.images) {
			            document[imgName].src = eval(imgName + "off.src");
			        }
			}

			// -->
			
			// SETUPS:
// ===============================

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 500;
defaultHeight = 500;

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=150,height=100,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle){
if (isNN){imgWin=window.open('about:blank','',optNN);}
if (isIE){imgWin=window.open('about:blank','',optIE);}
with (imgWin.document){
writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(100,100);');
writeln('width=100-(document.body.clientWidth-document.images[0].width);');
writeln('height=100-(document.body.clientHeight-document.images[0].height);');
writeln('window.resizeTo(width,height);}');writeln('if (isNN){');       
writeln('window.innerWidth=document.images["George"].width;');writeln('window.innerHeight=document.images["George"].height;}}');
writeln('function doTitle(){document.title="'+imageTitle+'";}');writeln('</sc'+'ript>');
if (!AutoClose) writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
else writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
writeln('<img name="George" src='+imageURL+' style="display:block"></body></html>');
close();		
}}