function openfull(theURL,winName,features,w,h) { //v2.0
	newwin=window.open(theURL,winName,features,w,h);
	newwin.moveTo(0,0);
	newwin.resizeTo(screen.availWidth,screen.availHeight)
	newwin.focus()
}

function changement()
{
	 if ((document.getElementById('login').value != '') && (document.getElementById('pass').value != '') ){
		 document.getElementById('envoi').disabled=false;
	}else{
		 document.getElementById('envoi').disabled=true;
	}
}
function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		//alert(obj);
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
} 
