<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF
      xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
      xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
      xmlns:foaf="http://xmlns.com/foaf/0.1/"
      xmlns:admin="http://webns.net/mvcb/">
<foaf:PersonalProfileDocument rdf:about="">
	<foaf:maker rdf:resource="#me"/>
	<foaf:primaryTopic rdf:resource="#me"/>
	<admin:generatorAgent rdf:resource="http://www.textcube.org/"/>
</foaf:PersonalProfileDocument>
<foaf:Person rdf:ID="me">
<foaf:name>blog</foaf:name>
<foaf:depiction rdf:resource="http://don114.co.kr/attach/1/1225105485.gif" />
<foaf:img rdf:resource="http://don114.co.kr/attach/1/1225105485.gif" />
</foaf:Person>
</rdf:RDF>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
// Example:
// writeCookie("myCookie", "my name", 24);
// Stores the string "my name" in the cookie "myCookie" which expires after 24 hours.
function writeCookie(name, value, hours, path) {
	var expire = "";
	if(hours != null) {
		expire = new Date((new Date()).getTime() + hours * 3600000);
		expire = "; expires=" + expire.toGMTString();
	}
	var dir = "";
	if (path != null) {
		dir += "; path=" + path;
	}
	else {
		dir += "; path=/";
	}
	//document.cookie = name + "=" + escape(value) + expire;
	//document.cookie = name + "=" + value + dir + expire;
	document.cookie = name + "=" + value.replace(/(^\s*)|(\s*$)/g, "") + dir + expire;
}
</script>

