var x = "";
var y;
var z;
var name;

function win(x, y, z, name) {
	
	var big = window.open("", "Zoom", "width=550, height=580, resizable=no");
	if( big != null ) {
	
	 big.document.open();
	 big.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
	 big.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\"><head>");
	 big.document.write("<title>AirCenterS&uuml;d - Kompressoren und Industriebedarf</title>");
	 big.document.write("<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-1\" />");
	 big.document.write("<meta http-equiv=\"content-language\" content=\"de\" />");
	 big.document.write("<meta name=\"description\" content=\"AirCenterS&uuml;d - Zoomansicht\" />");
   big.document.write("<meta name=\"robots\" content=\"index,follow\" />");
	 big.document.write("<meta name=\"google-site-verification\" content=\"p7ZVb0rHLr315ProsTrJj4B4qOV63VTvE1qu4j2Wr84\" /> ");
	 big.document.write("<link rel=\"stylesheet\" href=\"http://www.aircenter.de/assets/templates/default/styles.css\" type=\"text/css\" /></head>");
	 big.document.write("<body onclick='self.close();'><div align=\"center\">");
	 if( y != null && z != null ) {
	 
	  big.document.write("<br /><p><img src=\"http://www.aircenter.de/assets/images/zoom/" + x + "\" width=\"" + y + "\" height=\"" + z + "\" alt=\"" + name + "\" title=\"" + name + "\" /></p>");
	 } else {
	 
	  big.document.write("<br /><p><img src=\"http://www.aircenter.de/assets/images/zoom/" + x + "\" alt=\"" + name + "\" title=\"" + name + "\" /></p>");
	 }
	 big.document.write("<p>Zum Schlie&szlig;en klicken Sie bitte auf das Bild.</p>");
	 big.document.write("</div></body></html>");
	 big.document.close();
	}
}