function scrolltxt(){

resizeTo(800,600);	<!--//Redimensionnement à une taille fixe -->
scrollBy(0,150); 	<!--//Scrolle la fenêtre en relatif -->
scrollTo(0,50); 	<!--//Scrolle à une position définie -->
moveBy(0,0); 		<!--//Déplacement relatif -->
moveTo(0,350); 		<!--//Déplacement vers un point précis -->
resizeBy(x,y); 		<!--// Redimensionnement relatif -->
}

<!-- ======================================FONCTION : ACTUALISER =============================== -->

function rechargeframe()
{
parent.frames[0].location.reload();
}
 

function actualiser()
{
self.location.reload();
}
<!-- ======================================FONCTION : Ouvrir une fenêtre e mail=============================== -->

function email() {
	window.open("email.php",'popup','left=260,top=80,width=640,height=560,resizable=1,toolbar=false,scrollbars=false');
}

<!-- ======================================Fonctions utilisées dans email.php===================== -->
function MyChange()
{
var valeur = document.ftype.type.options[document.ftype.type.selectedIndex].value;
test_nom = (valeur.indexOf(",")!=-1)?valeur.indexOf(","):valeur.length;
var nom = valeur.substring(0,test_nom);
valeur = valeur.substring(test_nom+1,valeur.length);
test_email = valeur.length;
var email = valeur.substring(0,test_email); 
document.resultat.email.value = email;
}

function MyChangemail()
{
var email = document.ftype.type.options[document.ftype.type.selectedIndex].value;
document.resultat.email.value = email;
}

function send_email()
{ 
if (document.resultat.email.value!="") document.location.href="mailto:"+document.resultat.email.value;
}

<!-- =======================================FONCTION : atteindre une page====================================== -->


function atteindre(url, targetstr)
{
  if (url == 'backward')
    history.back(1);
  else if (url == 'forward')
    history.forward(1);
  else {
     if (targetstr == 'blank') {
       window.open(url, 'win1');
     } else {
       var frameobj;
       if ((frameobj = eval(targetstr)) != null)
         frameobj.location = url;
     }
  }
}
<!--=========================================FONCTION ferme vierge============================================= -->

function fermevierge()
{
window.open('vierge.php','plan');
window.open('numero.php','numero');
}
<!-- =======================================FONCTION Bouton animé ============================================= -->
TextBout = ' E-MAIL ';
TextNb = 0;
function BoutAnim()
	{
	if (TextNb == 0)
		{
		document.form1.subBout.value = "";
		}
	document.form1.subBout.value += TextBout.charAt(TextNb);
	TextNb++;
	relodFunct()
	}
function relodFunct()
	{
	if (TextNb == TextBout.length)
		{
		TextNb = 0;
		tempoBout = setTimeout("BoutAnim()",2000)
		}
	else
		{
		tempoBout = setTimeout("BoutAnim()",100);
		}
	}
<!-- ===========================================Fonction rechercher dans page ======================================== -->

var NS4 = (document.layers);
var IE4 = (document.all);

var win = this;
var n   = 0;

function findInPage(str) {
var txt, i, found;
if (str == "")
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
if (n == 0) alert(str + " n\'a pas été trouvé dans cette page.");
}
if (IE4) {
txt = win.document.body.createTextRange();
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
findInPage(str);
}
else
alert(str + " n\'a pas été trouvé dans cette page.");
}
}
return false;
}


<!-- ===========================================Fonction ======================================== -->
function MyChangelog()
{
var valeur = document.ftype.type.options[document.ftype.type.selectedIndex].value;
test_nom = (valeur.indexOf(",")!=-1)?valeur.indexOf(","):valeur.length;
var nom = valeur.substring(0,test_nom);
valeur = valeur.substring(test_nom+1,valeur.length);
test_utilisateur = valeur.length;
var utilisateur = valeur.substring(0,test_utilisateur); 
document.resultat.utilisateur.value = utilisateur;
}