function popup(idPic) {
	var width = 700;
	var height = 500 + 25;
	var popup = window.open('', 'popup', 'toolbar=no, location=no, resizable=no, status=no, scrollbars=no, menubar=no, width='+width+',height='+height);
	popup.document.open();
	popup.document.write('<html><head><link rel="stylesheet" type="text/css" href="/lib/c/popup.css" /></head><body><center><img src="/lib/i/ill/img_'+idPic+'.jpg" border="0"></center></html>');
	popup.document.close();
	if (popup) {
		popup.focus();
	}
}

