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