			function popup(title,img) {
				w = 440;
				h = 640;
				x = screen.availWidth/2-w/2;
				y = screen.availHeight/2-h/2;
				var popupWindow = window.open('','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',scrollbars=0');
				popupWindow.document.write('<html><head><title>'+title+'</title>');
				popupWindow.document.write('<link rel="StyleSheet" href="../../../../popup_flooring.css" type="text/css">');
				popupWindow.document.write('</head><body>');
				popupWindow.document.write('<div style="text-align:center;"><img src="../../../../images/products/flooring/products/'+img+'" width="400" height="600" border="0" align="center"></body></html>');
			}