function redirect(url) {
	window.location = url;
}
function popup(url) {
	return window.open(url, "window"); 
}
function clear(element) {
	var count = element.length;
	for (i = 0; i < count; i++) {
		element.remove(0);
	}
}
