function makeurl(controller, action, args, entery) {
	if (entery == undefined) entery = "";
	var url = entery + "index.php?c=" + controller + "&a=" + action;
	if (args instanceof Object) {
		for (var k in args) {
			url += "&" + k + "=" + args[k];
		}
	}
	return url;
}

