function showallpicks(){
  var allpicks = document.getElementById('allpicks');
	var showicon = document.getElementById('showicon');
	if(showicon.src == 'http://beermapping.com/images/icons/icon_plus.gif'){
	   allpicks.style.visibility = 'visible';
		 showicon.src = 'http://beermapping.com/images/icons/icon_minus.gif';
	}else{
	   allpicks.style.visibility = 'hidden';
		 showicon.src = 'http://beermapping.com/images/icons/icon_plus.gif';
	}
}
function popup(){
	 var theurl = 'http://beermapping.com/gabfuseradder.php';
	 newwindow = window.open(theurl,'name','height=300,width=500,scrollbars=yes');
	 if (window.focus) {newwindow.focus()}  
}
function popup2(userid){
	 var theurl = 'http://beermapping.com/gabf/2007/gabfuserpicks.php?uid=' + userid;
	 newwindow = window.open(theurl,'name','height=300,width=250,scrollbars=yes');
	 if (window.focus) {newwindow.focus()}  
}
