// Base pop-up javascript
function open_win(type, style) {
	if (type == "fabric"){
		window.open("fabric_popup.php?style="+style,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=900, height=600");
	} else if (type == "cleaning"){
		window.open("fabric_cleaning.php","_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=525, height=700");
	} else if (type == "upholstered"){
		window.open("upholstered_popup.php?style="+style,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width=1000, height=350");
	}
}