var tableWidth = "320"

function getHeadline(title){
   tempStr=("<table cellpadding=\"0\" cellspacing=\"0\" width=\""+tableWidth+"\">");
   tempStr+=("<tr>");
   tempStr+=("<td height=\"20\" width=\"2\"><img src=\"pics/main/10.gif\" width=\"2\" height=\"20\" alt=\"\" border=\"0\"></td>");
   tempStr+=("<td background=\"pics/main/11.gif\" class=\"pageTitle\"><img src=\"pics/spacer.gif\" width=\"3\" border=\"0\">"+title+"</td>");
   tempStr+=("<td width=\"13\"><img src=\"pics/main/12.gif\" width=\"13\" height=\"20\" alt=\"\" border=\"0\"></td>");
   tempStr+=("</tr>");
   tempStr+=("</table>");
   return tempStr;
}

function setTableWidth(newWidth){
	tableWidth = newWidth;	
}