function include(sJsFile) {
	document.writeln('<script src="' + (typeof(siteRoot) != 'undefined' ? siteRoot : '') + sJsFile + '"></script>');
}
function includes() {
	for(var iInc = 0; iInc < arguments.length; iInc++) {
		include(arguments[iInc]);
	}
}

function includeCss(sCssFile) {
	document.writeln('<link href="' + (typeof(siteRoot) != 'undefined' ? siteRoot : '') + sCssFile + '" rel="stylesheet" />');
}

