/*******************************************************************
*This js file is used to save time by typing "newTD();", instead   *
*of "document.writeln("<td align='center'>");".			   *
*This can be reused throughtout the website by linking pages to it.*                                           
*******************************************************************/

function newRow() {
	document.writeln("<tr>");
}
function newTD() {
	document.writeln("<td align='center'>");
}
function endTD() {
	document.writeln("</td>");
}