
function openWindow(url, name, gWidth, gHeight) {//ceio v1.0
  if (document.all || document.layers) {
    w = screen.availWidth;
    h = screen.availHeight;
  }
  var leftPos = (w-gWidth)/2, topPos = (h-gHeight)/2;
  window.open(url,name, 'status=no,toolbar=no,scrollbars=yes,resizable=yes,width=' + gWidth + ',height=' + gHeight + ',top=' + topPos + ',left=' + leftPos);
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}