<!--
var newWindow = null;
function toggleWindow(productID, design) {
	if (newWindow == null) {
		var sWidth = (screen.width - 730) / 2;
		var sHeight = (screen.height - 650) / 2 - 20;
		widthHeight = 'Height=559,Width=749,scrollbars=1,left=' + sWidth + ',top=' + sHeight;
		newWindow = window.open("http://inkjet.clientready.com/product.php?id=" + productID + "&design=" + design,"",widthHeight);
		//newWindow = window.open("http://www.redbarber.com/uploads/product.php?id=" + productID + "&design=" + design,"",widthHeight);
		//newWindow = window.open("/242/php/product.php?id=" + productID + "&design=" + design,"",widthHeight);
		newWindow.focus();
	}
	else {	
	 	newWindow.close();
	 	newWindow = null;
	}
}// -->
