function redirect(url) {
  window.location.href = url;
}

function redirectID(url) {
  var radioList = document.getElementsByName('radioIDs');
  var id = 0;

  for (i=0; i<radioList.length; i++) {
    if (radioList[i].checked)
      id = radioList[i].value;
  }

  window.location.href = url+"&id="+id;
}

function openPopup(img,w,h) {
  w2=screen.width;
  h2=screen.height;
  window.open(img,'zoom','scrollbars=no,location=no,menubar=no,titlebar=no,toolbar=no,width='+w+',height='+h+',left='+((w2/2)-(w/2))+',top='+((h2/2)-(h/2)));
}


function openPopupFotos(img,w,h) {
  w2=screen.width;
  h2=screen.height;
  window.open(img,'zoom','scrollbars=yes,location=no,menubar=no,titlebar=no,toolbar=no,width='+w+',height='+h+',left='+((w2/2)-(w/2))+',top='+((h2/2)-(h/2)));
}
