var john_evnt ;			// l'objet (la fenetre) john_evnt
var john_evntCreated = 0 ;	// Pour savoir si l'objet john_evnt est créé

evn_title = new Array(8);
evn_text = new Array(8);


evn_title[5] = "June 15 to september 15, 2007 at Suzanne Tétreault Massé art workshop" ;

evn_text[5] = "<P STYLE='line-height: 150%;position:relative;top:10px;'>Will be exposed some new canvas inspired by the beauties of Percé as well as the reproductions of the 'Percé 2005' collection. The art workshop is located : <P STYLE='line-height: 150%;position:relative;top:10px;text-indent:0;text-align:center;'>146 road 132 west<BR>Percé<BR>(418) 782-2947." ;

evn_title[8] = "March 14 to april 5, 2007 at Centre Culturel Vanier";

evn_text[8] = "<P STYLE='line-height: 150%;position:relative;top:10px;'>At 'La Seigneurie' gallery (from Centre Culturel Vanier) will take place an exhibition and official opening of the <A HREF='t_nfa.html' TARGET='new'>Niagara Falls Aviary collection</A>. The exhibition will also feature a preview of three new canvas based on the 'Percé l'hiver' (Percé on winter) theme. The official opening will take place march 14, 2007 from 19h to 21h.<P STYLE='line-height: 150%;position:relative;top:10px;text-indent:0;text-align:center;'>Centre Culturel Vanier<BR>15, Maple boulevard<BR>Châteauguay";

function open_wnd(desc)
{
  
  if(!john_evntCreated)
  {
  	// S'il n'est pas créé, on le créé une seule fois)
	john_evnt = window.open('', 'john_evnt', 'width=610,height=455,left=5,top=5') ;
	john_evntCreated = 1 ;
  }
  
  if(john_evnt.closed)
  {
  	// Si la fenetre Event est fermée, on efface l'objet et on le créé à nouveau
	delete john_evnt;
	john_evnt = window.open('', 'john_evnt', 'width=610,height=455,left=5,top=5') ;
  }
   
  john_evnt.document.open();
  john_evnt.document.write("<HTML><HEAD><TITLE>" + evn_title[desc] + "</TITLE>");
  john_evnt.document.write("<LINK HREF='../css/uniform.css' REL='stylesheet' TYPE='text/css'>");
  john_evnt.document.write("</HEAD><BODY BACKGROUND='../image/back_evn.jpg'>");
  john_evnt.document.write("<TABLE WIDTH='400' STYLE='position: relative; top:20px; left:120px;' BORDER=0 CELLSPACING=4 CELLPADDING=0>");
  john_evnt.document.write("<TR><TD VALIGN=top>");
  john_evnt.document.write("<H3 STYLE='text-align:center;'>" + evn_title[desc] + "</H3>" + evn_text[desc]);
  john_evnt.document.write("<BR><BR><BR><CENTER>( <A HREF='javascript:window.close();'>Close this window</A> )</CENTER>");
  john_evnt.document.write("</TD></TR></TABLE>");
  john_evnt.document.close() ;
  
  // On focus avant de resizer car le resize ne se fait pas si la fenêtre est minimisée
  john_evnt.focus();  
  
}