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