function getcss(cssfile) {
	loadcss = document.createElement('link');
	loadcss.setAttribute("rel", "stylesheet");
	loadcss.setAttribute("type", "text/css");
	loadcss.setAttribute("href", cssfile);
	document.getElementsByTagName("head")[0].appendChild(loadcss);
	}

if(window.innerWidth < '1000') {
	getcss('/media/layout/small.css');
	}

if(document.documentElement.clientWidth < '1200') {
	getcss('/media/layout/small.css');
	}
	
if(window.innerWidth < '1100' || (window.innerWidth > '1200' && window.innerWidth < '1300')) {
	getcss('/media/layout/nologo.css');
	}

if(document.documentElement.clientWidth < '1100' || (document.documentElement.clientWidth > '1200' && document.documentElement.clientWidth < '1300')) {
	getcss('/media/layout/nologo.css');
	}


