/**
 * Fonctions javascript propre au site web
 * 
 * @author : Service Informatique
 * @version : 2008-08-21
 * @copyright : Monné-Decroix (service informatique)
 */
 
/**
 * Ouvre le popup pour une vidéo
 *
 * @param string val_url Url de la video
 */
function openVideo(val_url){
	var int_w = 640; // hauteur de la popup
	var int_h = 560; // largeur de la popup
	var opts = "resizable=no,width="+int_w+",height="+int_h+", scrollbars=no" ;
	win = window.open(val_url,"Video",opts);
	win.focus();
}