// pop-up //
// USO <a href="pagina.htm" onclick="return popUp(this.href, 'N', 800, 600);"> //
function popUp(strURL, strType, strWidth, strHeight)
{
  var strOptions = "height=" + strHeight + ", width = " + strWidth + ", status";
  if(strType == "RS")
    strOptions += ", resizable, scrollbars";
  if(strType == "R")
    strOptions += ", resizable";
  if(strType == "S")
    strOptions += ", scrollbars";
  newWin = window.open(strURL, "newWin", strOptions);
  newWin.focus();
  return false;
}