function purify(thestring) {
	var test = thestring;
	test = test.replace(/\n/g,"");
	test = test.replace(/\N/g,"");
	test = test.replace(/\r/g,"");
	test = test.replace(/\R/g,"");
	test = test.replace(/\f/g,"");
	test = test.replace(/\F/g,"");
	test = test.replace(/\b/g,"");
	test = test.replace(/\B/g,"");
	test = test.replace(/\t/g,"");
	test = test.replace(/\T/g,"");
	test = test.replace(/%0a/g,"");
	test = test.replace(/%0A/g,"");
	//document.write("check 1");
	
	var test2 = unescape(test);
	//alert(test2.length);
	//test2 = test2.replace(/\n/g,"");
	//test2 = test2.replace(/\N/g,"");
	test2 = test2.replace(/\r/g,"");
	test2 = test2.replace(/\R/g,"");
	test2 = test2.replace(/\f/g,"");
	test2 = test2.replace(/\F/g,"");
	test2 = test2.replace(/\b/g,"");
	test2 = test2.replace(/\B/g,"");
	test2 = test2.replace(/\t/g,"");
	test2 = test2.replace(/\T/g,"");
	test2 = test2.replace(/%0a/g,"");
	test2 = test2.replace(/%0A/g,"");
	//alert(test2.length);
	//alert(test2);
	//document.write(test2);
	//document.write("check 2");
	return test2;
}
stylesstuff = "";
function myStyle(bigstring) {
	//alert(bigstring);
	stylesstuff = bigstring;
}
function applystyles(){
	//alert(purify(stylesstuff));
	document.write(purify(stylesstuff));
}