// JavaScript Document
function confirmation(val) {
        return confirm(val);
}

function refreshPage(){
  eval(location.reload(true));
}

function newWindow(val){
	
	var mylink = document.getElementById(val);
		
		mylink.onclick = function(){
			
			window.open(this.href, '_blank');
			
			return false;
		}
	
}