
function actu()
{
nw=open('','actu','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=790,height=570,left=15,top=15')
nw=open('http://actu.dna.fr','actu','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=790,height=570,left=15,top=15')
	nw.focus()
}




function news(url)
{
nw=open('','NEWS','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=510,height=570,left=15,top=15')
nw=open(url,'NEWS','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=510,height=570,left=15,top=15')
	nw.focus()
}








function popname(url,nom,toolb,loca,dir,sta,munub,scroll,resize,width,height,x,y)
{

nw=open(url,nom,'toolbar='+toolb+',location='+loca+',directories='+dir+',status='+sta+',menubar='+munub+',scrollbars='+scroll+',resizable='+resize+',width='+width+',height='+height+',left=x,top=y');

	nw.focus()
}














function getTime()
{
        var now = new Date();

        var day = now.getDay();
        var date = now.getDate();
        var month = now.getMonth() +1;
        var year = now.getYear();
        var minutes = now.getMinutes();
        var divider = "h";
        var jour = "";
        var mois = "";

        if (year < 1900)
                year = year + 1900;

        if (minutes<10)
                divider = "h0";

        if (day == 0)
                jour = "Dimanche";
        if (day == 1)
                jour = "Lundi";
        if (day == 2)
                jour = "Mardi";
        if (day == 3)
                jour = "Mercredi";
        if (day == 4)
                jour = "Jeudi";
        if (day == 5)
                jour = "Vendredi";
        if (day == 6)
                jour = "Samedi";

        if (month == 1)
                mois = "jan.";
        if (month == 2)
                mois = "f&eacute;v.";
        if (month == 3)
                mois = "mars";
        if (month == 4)
                mois = "avr.";
        if (month == 5)
                mois = "mai";
        if (month == 6)
                mois = "juin";
        if (month == 7)
                mois = "juil.";
        if (month == 8)
                mois = "ao&ucirc;t";
        if (month == 9)
                mois = "sept.";
        if (month == 10)
                mois = "oct.";
        if (month == 11)
                mois = "nov.";
        if (month == 12)
                mois = "d&eacute;c.";



        return(jour + "\<BR\>" + date + " " + mois   + " " + year);
}


