<!---//

function imagezoom(imagename, width, height) {
	var theURL = "imagezoom.php?imagename=" + imagename + "&width=" + width + "&height=" + height;
	var features = "width=" + width + ",height=" + height;
	var winName = "zoom";
	window.open(theURL,winName,features);
}
function sizechart(category, style, width, height) {
	var theURL = "sizes.php?category=" + category + "&style=" + style;
	var features = "width=" + width + ",height=" + height;	
	var winName = "sizes";
	window.open(theURL,winName,features);
}

function postage(id, width, height) {
	var theURL = "postagecosts.php?id=" + id;
	var features = "width=" + width + ",height=" + height;
	var winName = "postage";
	window.open(theURL,winName,features);
}

//--->

