/* AUTEUR: Michel Jasmin */
/* Date de création: 2003-08-11 */
function SendEMailWebMaster()
{
//Changez l'adresse du webmaitre ici.
SendEMail("webmestre", "pmiquebec.qc.ca");
}
function SendEMail(recipient, domaine)
{
location.href = "mailto:" + recipient + "@" + domaine;
}

function SendEMailWithSubject(recipient, domaine, subject)
{
location.href = "mailto:" + recipient + "@" + domaine + "?subject=" + subject;
}

function DateDuJour()
{
var vRet = new String;
Stamp = new Date();
arday = new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
armonth = new Array("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
vRet = arday[Stamp.getDay()] + ", " + Stamp.getDate() + " " + armonth[Stamp.getMonth()] + " " + Stamp.getYear();

return(vRet);
}
function OpenNewWindow(NewURL) 
{
NewWindow = window.open(NewURL, '', "toolbar, scrollbars, resizable");
NewWindow.focus();
}

/* AUTEUR: Michel Jasmin */
/* Date de création: 2003-08-11 */
function SendEMailWebMaster()
{
//Changez l'adresse du webmaitre ici.
SendEMail("webmestre", "pmiquebec.qc.ca");
}
function SendEMail(recipient, domaine)
{
location.href = "mailto:" + recipient + "@" + domaine;
}

function SendEMailWithSubject(recipient, domaine, subject)
{
location.href = "mailto:" + recipient + "@" + domaine + "?subject=" + subject;
}

function DateDuJour()
{
var vRet = new String;
Stamp = new Date();
arday = new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi");
armonth = new Array("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
vRet = arday[Stamp.getDay()] + ", " + Stamp.getDate() + " " + armonth[Stamp.getMonth()] + " " + Stamp.getYear();

return(vRet);
}
function OpenNewWindow(NewURL) 
{
NewWindow = window.open(NewURL, '', "toolbar, scrollbars, resizable");
NewWindow.focus();
}

function OpenNewWindow2(NewURL) 
{
  var WinHeight = 500;
  var WinWidth = 600;
  var top=(screen.height-WinHeight)/2;
  var left=(screen.width-WinWidth)/2;
    
NewWindow2 = window.open(NewURL, '', "toolbar=0, location=0, directories=0, menuBar=1, scrollbars=1, resizable=1, width=" + WinWidth + ", height=" + WinHeight + ", left=" + left + ", top=" + top);
NewWindow2.focus();
}
