function moreFrames(url){
  newWindow = window.open(url,"Linked","top=100,screenx=100,left=100,screeny=100,width=600,height=500,buttons=yes,scrollbars=yes,location=no,menubar=yes,resizable=yes,status=no,directories=no,toolbar=yes");
  newWindow.focus();
  }
function displayRandom() 
{ 
var img_name = new Array("tc11.jpg",
"tc12.jpg", "tc13.jpg",
"tc14.jpg", "tc15.jpg",
"tc16.jpg", "tc17.jpg")
var l = img_name.length; 

var rnd_no = Math.round((l-1)*Math.random()); 
return(img_name[rnd_no]); 
} 
function displayRand() 
{ 
var img_name = new Array("tc11.jpg",
"tc12.jpg", "tc13.jpg",
"tc14.jpg", "tc15.jpg",
"tc16.jpg", "tc17.jpg")
var l = img_name.length; 

var rnd_no = Math.round((l-1)*Math.random()); 
return(img_name[rnd_no]); 
} 
function  myForm_submit() {
				
					if (document.myForm.Username.value == "") {
						alert("Veuillez saisir votre LOGIN");
						document.myForm.Username.focus();
						return false;
					}
					if (document.myForm.password.value == "") {
						alert("Veuillez saisir votre PASSWORD");
						document.myForm.password.focus();
						return false;
					} 
					  	document.myForm.submit();
					 
	        	}
function date_du_jour() {
today = new Date();
		  dateLOCAL = today.toLocaleString();
		  longueurdate=dateLOCAL.indexOf(":",0)-3;
		  document.write(dateLOCAL.substring(0,1).toUpperCase()+dateLOCAL.substring(1,longueurdate));
}