// JavaScript Document

function enlargeImage(image) {
	var enlarge = window.open('','','scrollbars=no,menubar=no,height=400,width=400,resizable=no,toolbar=no,location=no,status=no');
	enlarge.document.writeln(unescape("<!DOCTYPE html PUBLIC %22-//W3C//DTD XHTML 1.0 Transitional//EN%22 %22http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd%22>"));
	enlarge.document.writeln(unescape("<html xmlns=%22http://www.w3.org/1999/xhtml%22>"));
	enlarge.document.writeln(unescape("<head>"));
	enlarge.document.writeln(unescape("<meta http-equiv=%22Content-Type%22 content=%22text/html; charset=iso-8859-1%22 />"));
	enlarge.document.writeln(unescape("<title>FenceCoaters // Gallery //</title>"));
	enlarge.document.writeln(unescape("<style type=%22text/css%22>"));
	enlarge.document.writeln(unescape("body{margin:0; padding:0;}"));
	enlarge.document.writeln(unescape("</style>"));
	enlarge.document.writeln(unescape("</head>"));
	enlarge.document.writeln(unescape("<body onload=%22self.focus()%22 background=%22images/gallery/"+image+"%22"));
	enlarge.document.writeln(unescape("</body>"));
	enlarge.document.writeln(unescape("</html>"));
	enlarge.document.close();
}