function popup(url){
	window.open(url,'popup','width=350,height=150,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes');
}

function ConfirmDelete(varURL, name){
	if (confirm("Are you sure you want to delete " + name + "?")){
		window.open(varURL, "_top");
		return true;
	}else{
		return false;
	}
}

function toggleHide(obj){
	var el = document.getElementById(obj);
	if(el.style.display == "block"){
		el.style.display = "none";
	}else{
		el.style.display = "block";
	}
}


function change_lang(lang){ 
	var the_url = window.location.href;
  if(the_url.match("lang=")){
		the_url = the_url.replace("&lang=en","");
		the_url = the_url.replace("&lang=ga","");
	}
  if(the_url.indexOf("?") < 1){
  	the_url = the_url + "?lang=" + lang;
  }else{
    the_url = the_url + "&lang=" + lang;    
  }
  window.location.href = the_url
}