
var strStylePath, strLinkStatement;

// DETERMINE WHICH STYLE SHEETS TO USE
// IF BROWSER IS DOM THEN WE USE DOM CSS OTHERWISE WE USE NON-DOM CSS

if (document.getElementById) {
	strStylePath = "/Pages/include/css/dom/";
} else {
	strStylePath = "/Pages/include/css/notDom/";
}


// INCLUDE RELEVANT STYLE SHEETS

document.write("<link rel=\"stylesheet\" href=\"" + strStylePath + "tournament/general.css\" type=\"text/css\">");
document.write("<link rel=\"stylesheet\" href=\"" + strStylePath + "shared/topPanel.css\" type=\"text/css\">");
document.write("<link rel=\"stylesheet\" href=\"" + strStylePath + "tournament/hobartcolumnLHS.css\" type=\"text/css\">");
document.write("<link rel=\"stylesheet\" href=\"" + strStylePath + "tournament/columnCTR.css\" type=\"text/css\">");
document.write("<link rel=\"stylesheet\" href=\"" + strStylePath + "tournament/columnRHS.css\" type=\"text/css\">");