
function openwin(ow) {
url = 'pop.htm?' + ow;
fen = window.open(url,"pop","width=350,height=350,scrollbars=0,toolbar=0,menubar=0,location=0,resizable=yes,status=0");
}





function datenorm()
{


 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 = "";

dt=new Date();
DefGMToffset = (dt.getTimezoneOffset()/60);

Hgmt = dt.getHours() + DefGMToffset;

Paris=(Hgmt)+2;
if (Paris<0)
{
Paris=(24+Paris);
}



 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 = "janvier";
 if (month == 2)
  mois = "f&eacute;vrier";
 if (month == 3)
  mois = "mars";
 if (month == 4)
  mois = "avril";
 if (month == 5)
  mois = "mai";
 if (month == 6)
  mois = "juin";
 if (month == 7)
  mois = "juillet";
 if (month == 8)
  mois = "ao&ucirc;t";
 if (month == 9)
  mois = "septembre";
 if (month == 10)
  mois = "octobre";
 if (month == 11)
  mois = "novembre";
 if (month == 12)
  mois = "d&eacute;cembre";

 return( jour + " " + date + " " + mois + " " + year );
}

















function afficher_menu()
{
document.write('');


document.write('<dl>');
document.write('<dt><a href="/index.html">Accueil</a></dt>');
document.write('</dl>');

document.write('<dl>');
document.write('<dt>Photo</dt>');
document.write('<dd><a href="http://picasaweb.google.com/cousinhub.net/TurquieJuin2008?authkey=A9_sfpJvrwo" target="_blank">Séjour à Kusadasi, Turquie, juin 2008<br />Album Picasa sur Google</a></dd>');
document.write('<dd><a href="http://www.hebus.com/">Des photos et fonds d\'écran sur hebus.com</a></dd>');
document.write('</dl>');

document.write('<dl>');
document.write('<dt><a href="/video.html">Vidéo</a></dt>');
document.write('<dd>Des sauts à l\'élastique, des délires d\'ados, un petit mix des événements familiaux</dd>');
document.write('</dl>');

document.write('<dl>');
document.write('<dt>Graphisme</dt>');
document.write('<dd><a href="/tshirts.html">T-shirts</a></dd>');
document.write('<dd><a href="/cdcover.html">CD covers</a></dd>');
document.write('</dl>');

document.write('<dl>');
document.write('<dt>Famille</dt>');
document.write('<dd><a href="/famille_chris.html">Christine</a></dd>');
document.write('<dd><a href="/famille_perrine.html">Perrine</a></dd>');
document.write('<dd><a href="/famille_quentin.html">Quentin</a></dd>');
document.write('</dl>');

document.write('<dl>');
document.write('<dt><a href="http://cousinhub.over-blog.net/">Mon blog</a></dt>');
document.write('<dd>Quelques annecdotes, le plus souvent amusantes</dd>');
document.write('</dl>');

document.write('<dl>');
document.write('<dd class="leg">Toutes les photos et vidéos : ©ousinhub<br />Pas d\'utilisation sans autorisation, merci</dd>');
document.write('</dl>');



}





function afficher_copy()
{
document.write('<div style="clear: both;">&nbsp;</div>');
document.write('<div id="copy">');
document.write('&nbsp;&copy;ousinhub - 2000-2008');
document.write('</div>');
}








function getByID(id)
{
	if (document.all)
	{
		return document.all(id) ;
	}
	if(document.getElementById)
	{
		return document.getElementById(id) ;
	}
	alert(id+' not found') ;
}

function hide(id)
{
	var o = getByID(id) ;
	if (o)
	{
		if (document.all)
		{
			o.display = "none" ;
		}
		if(document.getElementById)
		{
			o.style.display = "none" ;
		}
	}
}

function show(id)
{
	var o = getByID(id) ;
	if (o)
	{
		if (document.all)
		{
			o.display = "visible" ;
		}
		if(document.getElementById)
		{
			o.style.display = "block" ;
		}
	}
}

function hidevideo()
{
hide('alain_billard');
hide('course_alain-leo');
hide('ponsonnas');
hide('leo_the_american');
hide('leo_the_sniffer');
hide('quentin_judo');
hide('36_11_theo');
hide('alain_chu');
hide('tacoma');
}