﻿function QueryObject() {
}

QueryObject.prototype.parse = function(location) {
	var location = location || window.location.search.substring(1);
	var queries = location.split("&");
	while (queries.length) {
		var query = queries.pop();
		var name = query.split("=")[0];
		var value = query.split("=")[1];
		this[name] = value;
	}
}
