<!-- LOOK OUT --- here comes the all-purpose pop-up image window code -->

<!--//

//This function creates a popup window and inserts the image
// script created by Spookster at Website Abstraction
// focus change by Andy
// YES - you can use the code, but give Spookster the credit


function imageView(myImage,popupWinName,w,h,x,y){
preview = window.open("", popupWinName,
"resizable=no,toolbar=no,scrollbars=no,menubar=no,status=no,directories=no,width="+w+",height="+h+",left="+x+",top="+y+"");
preview.document.write('<html><head><title>SSAutochrome - Click Image To Close<\/title><\/head>'
+'<body onBlur="self.focus();" marginWidth="0" marginHeight="0" topmargin="0" leftmargin="0">'

+'<center><a href="javascript:self.close()"><img border="0" alt="click image to close window" src="'+myImage+'" width="'+w+'" height="'+h+'">'

+'<\/center><\/a><\/body><\/html>');

preview.document.close();
}
// -->

<!-- The End of the all-purpose pop-up code -->