<!--

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if ( ( browserName == "Netscape" && browserVer >= 3 ) || ( browserName == "Microsoft Internet Explorer" && browserVer >= 4 ) ) {
        RollVersion = "yes";
} else {
        RollVersion = "no";
}
if ( browserName == "Netscape" && browserVer >= 3 ) {
        FocusVersion = "yes";
} else {
        FocusVersion = "no";
}

function PopFrameUrl(url,w,h) {
	var theparam = 'dependent=yes,z-lock=yes,titlebar=1,location=0,toolbar=no,directories=no,menubar=0,resizable=0,scrollbars=0,status=0,width=' + w + ',height=' + h;
	var pagezikmetalpop = window.open(url,'zikmetal',theparam);
	pagezikmetalpop.focus();
}

function PopFrameUrlNav(url,w,h) {
	var theparam = 'dependent=yes,z-lock=yes,titlebar=1,location=0,toolbar=no,directories=no,menubar=0,resizable=0,scrollbars=1,status=0,width=' + w + ',height=' + h;
	var pagezikmetalpop = window.open(url,'zikmetal',theparam);
	pagezikmetalpop.focus();
}

function confirm_delete(page) {
	confirmation = confirm('Etes-vous sûr de vouloir supprimer cet élément ?');
	if (confirmation) {
		window.location.replace(page);
	}
}

function confirm_valider(page) {
	confirmation = confirm('Etes-vous sûr de vouloir valider ?');
	if (confirmation) {
		window.location.replace(page);
	}
}

//-->