<!--

function agrandir(fichier)
{
    tmp = window.open(fichier,"tmp","scrollbars, resizable, width=650,height=550") ;
    tmp.resizeTo(650,600) ;
    tmp.moveTo(0,40) ;
    
    tmp.focus() ;
}

function zoom(fichier)
{
    tmp = window.open(fichier,"tmp","scrollbars, resizable, width=650,height=550") ;
    tmp.resizeTo(650,600) ;
    tmp.moveTo(0,40) ;
    
    tmp.focus() ;
}

function agrandirpix(fichier)
{
    tmp = window.open("","tmp","scrollbars, resizable, width=550,height=500") ;
    
    tmp.document.write("<html><head>") ;
    tmp.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />') ;
    tmp.document.write('<meta name="authors" content="Guyomo" />') ;
    tmp.document.write('<link rel="stylesheet" type="text/css" ') ;
    tmp.document.write('href="includes/templates/petit_couillu/css/stylesheet.css" />') ;
    tmp.document.write('<base href="http://www.petitcouillu.com/pages/boutique/" />') ;
    tmp.document.write("</head>") ;
    tmp.document.write("<body>") ;
    tmp.document.write('<table width="95%" align="center" valign="center" ') ;
    tmp.document.write('class="popupimage">') ;
    tmp.document.write('<tr>') ;
    tmp.document.write('<td class="popupimages" align="center" valign="middle">') ;
    tmp.document.write('<a href="javascript:window.close()"><img ') ;
    tmp.document.write('src="images/petitcouillu/'+fichier+'" ') ;
    tmp.document.write('border="0" ') ;
    tmp.document.write('alt=    "Cliquez sur l\'image pour la fermer" ') ;
    tmp.document.write('title=  " Cliquez sur l\'image pour la fermer " ') ;
    tmp.document.write('width="450" height="450" /></a>') ;
    tmp.document.write('</td></tr></table>') ;
    tmp.document.write("</body></html>") ;
    
    tmp.resizeTo(580,500) ;
    tmp.moveTo(0,50) ;
    
    tmp.focus() ;
}




//-->