/* auteur: Guillaume Lescoffit */
/* Date de création: 19/10/2003 */
	function Popup_VarSize_DB(picid,width,height,comment) {
		url = "bin/public/popup_news.php?picid="+picid+"&comment="+comment;
		var dummy = window.open(url,"","scrollbars=0,resizable=1,left=350,top=250,width="+width+",height="+height);
	}   /* Carnet, Evenement, Actualite Ensg */

	function Popup_VarSize_DB_restricted(picid,width,height) {
		url = "bin/public/popup_photo_restricted.php?picid="+picid;
		var dummy = window.open(url,"","scrollbars=0,resizable=1,left=350,top=250,width="+width+",height="+height);
	}   /* Carnet, Evenement, Actualite Ensg */
	
	
	function Popup_VarSize_PIC(width,height,picture) {
		var dummy = window.open(picture,"","scrollbars=0,resizable=1,left=250,top=150,width="+width+",height="+height);
	}   /* volcandes,temoignage2 */

	function popup(url) {
		var dummy = window.open(url,"","scrollbars=1,resizable=0,left=150,top=100,width=800,height=500");
	} /* annuaire, section pro, delegues regionaux */
	
	/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Anonymous | http://javascript.internet.com/ */

function ChangeStatus(frm)
  {
	var e=frm.new_rub_niveau.selectedIndex
    if (e==0)
	{
		frm.new_rub_path.disabled=true
		frm.new_rub_level.disabled=true
	}
	else
	{
		frm.new_rub_path.disabled=false
		frm.new_rub_level.disabled=false	
	}
 }

 function HideTable(tbl)
  {
	if(document.getElementById(tbl).style.display == 'none')
	{
		document.getElementById(tbl).style.display ='';
	}
	else
	{
		document.getElementById(tbl).style.display ='none';
	}
 }

 function show(item){
oel = document.getElementById ("coucou");
oel.style.display = "";}

function hide(item){
item.style.display='none'
}

 
 function Confirm(thisform,msg) {
if (confirm(msg)) {
return true;
}else{
return false;
}
} 
//  End -->