// libitch.js

function print_vote() {
	if (http.readyState == 4) {
		document.getElementById("old_vote").innerHTML = http.responseText;
   }
}

function Session() {
	if (document.cookie) {
		this.ID = document.cookie;
	} else {
		// I don't like this... I need something better here...
		this.ID = new String;
		for (n=0;n<32;n++){
			this.ID = this.ID + Math.round(Math.random()*9);
		}
		document.cookie = this.ID;
	}
}

