function shareRecipe(rname) {
	var w = 320;
	var h = 390;
	var l = (screen.width/2) - (w/2);
	var t = (screen.height/2) - (h/2) - 40;
	var feat = "scrollbars=0,toolbar=0,menubar=0,status=1,location=0,width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ",resizable=0";
	window.open('../share/?recipe,'+rname, "wShare", feat);
}