function idxloadUsers(arr){

	var users = new Array("admin","almog","yogev");
	var key = document.goto.u.value;
	var values = "";
	users.sort();
	var j = 0;
	for(i=0; i<users.length; i++){
		if(users[i].substring(0, key.length) == key){
			values = values + "&nbsp; <a href='#' onclick=\"javascript: document.frm.to.value='"+ users[i] +"'; document.getElementById('allUsers').style.visibility = 'hidden';\">" + users[i] + "</a><br/><hr style='color: #FFFFFF; height: 1px;'/>";					
			if(j == 5){
				break;
			}
			j++;
		}
	}
	
	document.getElementById('allUsers').innerHTML = values;
	document.getElementById('allUsers').style.visibility = "visible";

}

function idxcloseLoadUsers(){
	document.getElementById('allUsers').style.visibility = "hidden";
}

function go2page(){
	x = prompt("בחר מספר עמוד שברצונך להגיע אליו", "1");
	if(x){
		window.location = document.location.href + "&p=" + x;
	} else {
		window.location = document.location.href;
	}
	
}

function confirmMove(e, obj) {
	//Prevent the link change
	if (e && e.preventDefault) e.preventDefault();
	if(confirm(obj.title) == true)
		window.location.href=obj.href;
	return false;
}
