function newMonth(month) {

	var str='';
	str+='<tr>';
	str+='	<td colspan="8" class="month">'+month+'</td>';
	str+='</tr>';
	
	document.write(str);
}

function newTourney(date, loc, title, div, cost, email, name, number, enter_online_dir) {
	var str='';
	str+='<tr>';
	str+='   <td class="cell">'+date+'</td>';
	str+='   <td class="cell">'+loc+'</td>';
	str+='   <td class="cell">'+title+'</td>';
	str+='   <td class="cell">'+div+'</td>';
	str+='   <td class="cell">'+cost+'</td>';
	str+='   <td class="cell"><a href="mailto:'+email+'">'+name+'</a></td>';
	str+='   <td class="cell">'+number+'</td>';
	str+='   <td class="cell"><a href="'+enter_online_dir+'">Enter<br>Online</a></td>';
	str+='</tr>';
	
	document.write(str);
}
