dataC = document.cookie;
if(dataC !== null){
type = dataC.slice(5);
document.write("<link rel=\"stylesheet\" href=\"../" + type + ".css\" type=\"text/css\" />");
}

function size(type , n){
	document.body.style.fontSize = n + "%";
	document.body.style.lineHeight = "150%";

	Day = 365;
	setDay = new Date();
	setDay.setTime(setDay.getTime()+(Day*1000*60*60*24));
	expDay = setDay.toGMTString();
	document.cookie = "type=" + escape(type) + ";expires=" + expDay + ";path=/";
}