function openWindow(url, width, height) {
   if (width == null) width = screen.width / 2;
	if (height == null) height = screen.height / 2;
	var top = (screen.height - parseInt(height)) / 2;
	var left = (screen.width - parseInt(width)) / 2;
   options = 'height='+height+',width='+width+',toolbar=0,location=0,directories=0,menubar=0,top='+top+',left='+left+',scrollbars=0,status=0';
   w = window.open('', '', options);
   w.document.write('<html><head><title>Chargement en cours...</title></head><body>Chargement en cours...</body></html>');
   w.document.close();
   w.document.location.href=url;
   w.title = 'titi';
   return false;
}

function popupImage(URL, width, height) {
   if (width == null) width = screen.width / 2;
	if (height == null) height = screen.height / 2;
	var top = (screen.height - parseInt(height)) / 2;
	var left = (screen.width - parseInt(width)) / 2;
   options = 'height='+height+',width='+width+',toolbar=0,location=0,directories=0,menubar=0,top='+top+',left='+left+',scrollbars=0,status=0';
   w = window.open('', '', options);
   w.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>Couverture BEL</title><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /></head><body><img src="'+URL+'" alt="" /></body></html>');
   w.document.close();
   return false;
}

function popupNews(id) {
	openWindow('index.php?page=News:NewsPage&id='+id, 475, 270);
}

function popupTrainingSession(section, id) {
	openWindow('index.php?page=TrainingPopupTheme'+section+'&id='+id, 490, 261);
}
