<!--
function popUp(URL, width, height) {

		var left = (screen.width - width) / 2;
		var top = (screen.height - height) / 2;

		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+width+',height='+height+', left = '+left+',top = '+top+'');");
		
		}

function popUpFile(URL, width, height) {

		var left = (screen.width - width) / 2;
		var top = (screen.height - height) / 2;

		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width='+screen.width+',height='+screen.height+', left = '+0+',top = '+0+'');");
		
}

function confirmation(name, get) {
		//alert ($get)
		var answer = confirm("Are you sure you want to delete: "+name)
		 if (answer){	 
			 window.location = get;
		 }
		
}




// -->