function cssChange(file){
	var link = document.createElement('link');
	with(link) {
		href = file;
		type = 'text/css';
		rel = 'stylesheet';
	}
	var head = document.getElementsByTagName('head');
	head.item(0).appendChild(link);
}

function require(uri) {
	var script = document.createElement('script');
	script.type = 'text/javascript';
	script.src = uri;
	var head = document.getElementsByTagName('head')[0];
	head.appendChild(script);
}

window.onload = function() {
	if(css)cssChange(css);
	require('http://link.villagep.com/parts/rss/index.php?' + url + max_entry + strim_width + charset + icon);
}
