var newwindow;
function flavors(url)
{
	newwindow=window.open(url,'name','height=500,width=400,left=100,top=50,resizable=yes,scrollbars=yes,status=yes');
	if (window.focus) {newwindow.focus()}
}

