/** shipping cost popup functions **/
function get_shcost(url) {
	var zip = document.getElementById('zip');
	if(zip) { popup(url+'&ship_zip='+zip.value); }
}

function set_shcost(cost) {
	var obj = document.getElementById('shcost');
	if(obj) { obj.innerHTML = cost; }
}

function go_subscribe(t) {
	var f=document.mcembeddedsubscribeform;
	var obj = f['EMAIL'];
	var url = 'http://tasteireland.us2.list-manage1.com/subscribe/post?u=a85d127bd8fd00213ce60d2e7&amp;id=702991288f';
	if(obj && t) {
		popup(url+'&EMAIL='+obj.value); 
	}
}

