

function calculateShipping(itemKey, store) 
	{
		win = window.open("/cgi-bin/shippingCalculator.cgi?itemKey=" + itemKey + "&store="+store +"",
		"shipingWindow",
		"status=no,"+
		"toolbar=no,"+
		"location=no,"+
		"top=0"+
		"left=0"+
		"screenX=0"+
		"screenY=0"+
		"directories=no,"+
		"menu=no,"+
	 	"scrollbars=yes," +
		"resizable=yes," +
		"width=550,height=450");
	}


