// CMS JavaScript Functions

function openWindow(url,width,height) {
  var winname = String(Math.round(Math.random()*10000000));
  if(width==undefined) { var width = 600; }
  if(height==undefined) { var height = 500; }
  var win=window.open(url, winname, "width=" + width + ", height=" + height + ", status=yes, resizable=yes, scrollbars=yes");
}

