// CMS JavaScript Functions

function openWindow(url,width,height) {
  if(typeof width == 'undefined') { var width = 600; }
  if(typeof height == 'undefined') { var height = 500; }
  var win=window.open(url, "opinion", "width=" + width + ", height=" + height + ", status=yes, resizable=yes, scrollbars=yes");
}

function openPiMusique(url) {
  win = window.open(url,"pimusique","width=270,height=200,scrollbars=no");
  win.focus();
}

