// JavaScript Document
/*
	Fonctions pour site T.C.Université.
	Création : Yves Quoidbach 25-02-2006 
	Dernière modif.: Yves Quoidbach 25-02-2006
*/
/* Ouvre une page "fiche membre" dans une fenêtre popup */
function TCUMembre(matr) {
OpenWin = window.open("http://www.tcuniversite.be/Membres/fichemembre.php?TCUMatr="+matr, "CtrlWindow",
					"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=600,height=600");
}
/* Ouvre une page "fiche club" dans une fenêtre popup */
function TCUClub(matr) {
OpenWin = window.open("http://www.tcuniversite.be/ficheclub.php?TCUClubMatr="+matr, "CtrlWindow",
					"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=500,height=400");
}
/* Ouvre une page "classement ATP / WTA" pour jeux de pronostics dans une fenêtre popup*/
function GCAtpwta(gctcat) {
OpenWin = window.open("http://www.tcuniversite.be/jeux/2006/gctatpwta.php?GCTCat="+gctcat, "CtrlWindow",
					"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=400,height=600");
}
/* Ouvre une page "Equipe" du concours Grand Chelem */
function GCEquipe(GCCE) {
OpenWin = window.open("http://www.tcuniversite.be/jeux/2006/gcequipe.php?CodeEquipe="+GCCE, "CtrlWindow",
					"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=400,height=500");
}
/* Ouvre une popup "message" avec le titre et le message donnés... */
function TCUMsg(MsgTitre,MsgTexte) {
OpenWin = window.open("http://www.tcuniversite.be/msg.php?MsgTitre="+MsgTitre+"&MsgTexte="+MsgTexte, "CtrlWindow",
					"toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=300,height=300");
}
/* Ouvre une nouvelle fenêtre */
function TCUOpen(page) {
OpenWin = window.open(page);
}
/* Ferme la fenêtre courante */
function TCUClose(page) {
CloseWin = page.close();
}
