
var imageWindow = null;
function openImage(theURL,x,y) {
	centerX = (self.screen.availWidth - x)/2;
	centerY = (self.screen.availHeight - y)/2;
	horizontal = x;
	vertical = y;
	if (imageWindow){
		if (!imageWindow.closed){
			imageWindow.focus();
		}
	}
	imageWindow = window.open('','name','width='+horizontal+',height='+vertical+'');
	imageWindow.moveTo(centerX,centerY);
	imageWindow.document.write("<html><head><title>santafewoodcarving.com</title></head><body bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0>");
	imageWindow.document.write("<table background=#ffffff border=0 width=" + x + " height=" + y + " cellpadding=0 cellspacing=0>");
	imageWindow.document.write("<td><img src=" + theURL + ">");
	imageWindow.document.write("</td></table></body></html>");
}
