function ShowMap(name,width,height) {
    var w = window.open("/clubs/"+name+"/map.html", "clubmap", "top="+ (screen.height/2-height/2-10)+ ",left="+(screen.width/2-width/2)+ ",width="+(Number(width))+",height="+ (Number(height))+ ",resizable=no,toolbar=no,status=no,menubar=no,scrollbars=no");
    w.focus();
}
function ShowAdds(club,name) {
	var width = 500;
	var height = 420;
    var w = window.open("/clubs/"+club+"/"+name+".html", "clubinfo", "top="+ (screen.height/2-height/2-10)+ ",left="+(screen.width/2-width/2)+ ",width="+(Number(width))+",height="+ (Number(height))+ ",resizable=no,toolbar=no,status=no,menubar=no,scrollbars=yes");
    w.focus();
}