function res() {
	w = screen.width;
	h = screen.height;
	s = document.createElement("link");
	s.type = "text/css";
	s.rel = "stylesheet";
	res = w + " x " + h;
	
	if(w <= 1024 || h <= 768) {
		s.href = "css1/new-small.css";
		document.getElementsByTagName("head")[0].appendChild(s);
	} else {
		s.href = "css1/new-large.css";
		document.getElementsByTagName("head")[0].appendChild(s);
	}
}

window.load = res()