function ShowHide(id) {
	var theDiv = document.getElementById(id);
	if(theDiv.style.display == 'none') {
		theDiv.style.display = '';
	} else {
		theDiv.style.display = 'none';
	}
}

function ViewImage(url, w, h) {
	window.open(url, "WineBottleImage", "height=" + h + ",width=" + w);
}