


/******************************************************/
	
function zoompic(url, w, h)
	{
		
		wnd = popup(url, "_blank", w, h, "menubar=0,location=0,toolbar=0,status=0,scrollbars=0,resizable=0");
		return wnd;
	}

	function popup(url, target, width, height, features)
	{
		var features1;
		
		features1 = 'width=' + width + ',height=' + height;
		if (screen)
			features1 += ',left=' + (screen.width - width) / 2 +',top=' + (screen.height - height) /2;
		if (features)
			features1 += ',' + features;
		
		var win=window.open('#', target, features1);
		
		var temp='<html><head><link href="/style/femme.css" rel="stylesheet" type="text/css" /></head><body style="margin: 0px;">';
		temp+='<table width="'+width+'" height="'+height+'" >';
		temp+='<tr><td>';
		temp+='<img src="/images/squellete/logo.gif" width="179px" height="53px"/>';
		temp+='</td></tr>';
		temp+='<tr><td>';
		temp+='<img src="'+url+'" width="'+width+'" height="'+height+'"/>';
		temp+='</td></tr>';
		temp+='</table>';
		temp+='</body></html>';
		
		win.document.open();
		win.document.write(temp);
		win.document.close();
		return win;
	}		

	function popuptext(text,width,height)
	{
		
		
		
		features1 = 'width=' + width + ',height=' + height+',menubar=yes,location=no,toolbar=yes,status=no,scrollbars=yes,resizable=yes';
		if (screen)
			features1 += ',left=' + (screen.width - width) / 2 +',top=' + (screen.height - height) /2;
		
		
		var win=window.open('#', "_blank", features1);
		
		var temp='<html><head>';
		temp+='<link href="/style/femme.css" rel="stylesheet" type="text/css" />';
		temp+='<link href="/style/printnon.css" media="print" rel="stylesheet" type="text/css" />';
		temp+='<link href="/style/squellete.css" rel="stylesheet" type="text/css" />';
		temp+='</head>';
		temp+='<body style="margin: 0px;">';
		temp+='<table width="100%">';
		temp+='<tr><td>';
		temp+='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>';
        temp+='<td>&nbsp;&nbsp;<img src="/images/squellete/logo.gif" border="0" /></td>';
		temp+=' <td>';
		temp+='<div class="printnone"    align="right"><a href="javascript:window.print();">';
		temp+='<img src="/images/pictos/article/imprimmer_txt.gif" width="112" height="33" border="0" /></a>&nbsp;&nbsp;</div>';
		temp+='</td><tr>';
		temp+=' <td colspan="2"><img src="/images/spacer/bg-tt_pratique.gif" width="100%" height="1" />';
		temp+='</tr></table>';
		temp+='</td></tr>';
		temp+='<tr><td valign="top">';
		temp+='<div style="text-align: left;font: verdana 10px #000000;text-align:justify">'+text+'</div>';
		temp+='</td></tr>';
        temp+='</table>';
		temp+='</body></html>';
		
		win.document.open();
		win.document.write(temp);
		win.document.close();
		return win;

	}

	function changepic(url,textalt)
	{
		changeImageSrc('vispic', url,textalt);
	}
