<!--//

//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 coupon(myImage,popupWinName,w,h,x,y){
var hv = h*1 + 30;
preview = window.open("", popupWinName,
"resizable=yes,toolbar=yes,scrollbars=no,menubar=yes,status=no,directories=no,width="+w+",height="+h+",left="+x+",top="+y+"");
preview.document.write('<html><head><title>[Click on image to close]<\/title><\/head>'
+'<body marginWidth=0 marginHeight=0 topmargin=0 leftmargin=0 onLoad="javascript:self.focus();">'

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

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

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




