var CSSPath = getCSSPath();

writeCSS(CSSPath);

function getCSSPath() { 
  var csspath = "styles/"; 
	return csspath;
}

function writeCSS(CSSPath) {
	var CSS = "main.css";
	document.writeln('<LINK REL="stylesheet" HREF="' + CSSPath + CSS + '">');
}
