/* scripts généraux pour meauXfiles */

// email stuff
  var _u   = "frank";
  var _z = "net";
  var _d = "olieu";
  var _l   = _u + "@" + _d + "." + _z;
  var _m = "e-mail";
// end

// FrameBuster !
  if (top.location != self.location) {
    top.location = self.location.href
  }
// end

// ABBR fix pour IE<7
// Source: http://www.sovavsiti.cz/css/abbr.html
function styleAbbr() {
  var oldBodyText, newBodyText, reg
  if (isIE) {
    oldBodyText = document.body.innerHTML;
    reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
    newBodyText = oldBodyText.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>');
    document.body.innerHTML = newBodyText;
  }
}
window.onload = function(){
  styleAbbr();
}
isIE = (document.all) ? true:false;
// end

// Anne van Kesterens version: other attrib. than 'title'...
// http://annevankesteren.nl/2003/08/improved-styling-abbr-in-ie

/* function abbrToSpan(){
 var newSourceCode;
  if (isIE) {
    newSourceCode           = document.body.innerHTML;
    newSourceCode           = newSourceCode.replace('<ABBR','<SPAN class=\"abbr\"');
    newSourceCode           = newSourceCode.replace('</ABBR>','</SPAN>');
    document.body.innerHTML = newSourceCode;
  }
}
window.onload = function(){
 abbrToSpan();
 // other onloads go here
}
isIE = (document.all) ? true:false; */
// end

// Google Analytics
function goan() {
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
var pageTracker = _gat._getTracker("UA-4627949-3");
pageTracker._initData();
pageTracker._trackPageview();
}
//window.onload = function(){
//  goan();
//}
// End
