function enlargeWindow(image,width,height,productName) {
	var print1 = "<title>Eton Vintners - " + productName + "</title>";
	var print2 = "<body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>";
	var print3 = "<img src='"+image+"' border='0' width='"+width+"' height='"+height+"'>";
	var print4 = "</body>";
	
	ImageWindow = window.open('','','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+'');
	ImageWindow.document.write(print1+print2+print3+print4);
	ImageWindow.document.close();
}
