var path;
var productName;
var productImg;
var productTracks;
var productAddon;
var imgWidth;
var imgHeight;
var message;

function win(path, productName, productImg, productTracks, productAddon, imgWidth, imgHeight, message) {

	if( productTracks != "" && productAddon != "") {

		wide = imgWidth*2.7;
	} else {

		wide = imgWidth*1.3;
	}
	high = imgHeight*1.4;

	var big = window.open("", "Zoom", "width=" + wide + ", height=" + high + ", left=150, top=150, resizable=no, scrollbars=yes");

	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>SCHMANKERL-RECORDS - THE FINEST SELECTION OF MELODIC ROCK</title>");
		big.document.write("<meta http-equiv=\"content-Type\" content=\"text/html; charset=iso-8859-1\" />");
		big.document.write("<link rel=\"stylesheet\" href=\"styles.css\" type=\"text/css\" /></head>");
		big.document.write("<body onclick='self.close();'><div id=\"zoom\">");

		if( productTracks != "" && productAddon != "") {

			big.document.write("<br /><table>");
						big.document.write("<tr><th colspan=\"2\">" + productName + "</th></tr>");
			
			big.document.write("<tr><td  style=\"width: " + imgWidth + "px;\">");
			big.document.write("<img src=\"" + path + "/" + productImg + ".jpg\" alt=\"\" /></td>");
			big.document.write("<td>" + productTracks + "</td></tr>");

			big.document.write("<tr><th colspan=\"2\">" + productAddon + "</th></tr>");
			big.document.write("</table>");
		} else {

			big.document.write("<br /><p><img src=\"" + path + "/" + productImg + ".jpg\" alt=\"\" /></p>");
		}

		big.document.write("<p>" + message + "</p>");
		big.document.write("</div></body></html>");
		big.document.close();
	}
}
