function url(url) {
  window.open(url); return false;
}

function webl(url) {
  location.href = url;
}

function get(url) {
  location.href = url;
}

function tabs(id1,id2){
  if (document.getElementById(id1).style.display == 'none') {
    document.getElementById(id1).style.display = 'block';
    document.getElementById(id2).style.display = 'none';
  }
  else { 
    document.getElementById(id1).style.display = 'none';
    document.getElementById(id2).style.display = 'block';
  }
  return false;
}
function encuesta(id) {
  window.open('http://www.solo-racing.com.ar/questions.php?id='+id,'encuestas','width=320, height=300, left=0, top=0, scrollbars=1, resize=1');
}

function close_aviso_pmsg() {
  document.getElementById('aviso_new_priv').style.display='none';
  pmsg('url');
}

function pmsg(url) {
  window.open('http://www.solo-racing.com.ar/pmsg/index.php','','width=730, height=350, left=20, top=20, scrollbars=YES');
}
function pmsgSend(nick) {
  window.open('http://www.solo-racing.com.ar/extras/pmsg_send.php?nick=' + nick,'','width=475, height=370, left=20, top=20, scrollbars=YES');
}

function pmsg_sec(bandeja) {
   if (bandeja == 1 ) window.location.href = 'pmsg.php';
   if (bandeja == 2 ) window.location.href = 'pmsg_save.php';
   if (bandeja == 3 ) window.location.href = 'pmsg_sendfolder.php';
   if (bandeja == 4 ) window.location.href = 'pmsg_sendfolderp.php';
   if (bandeja == 5 ) window.location.href = 'pmsg_send.php';
}

function marqueeStop(id){
	document.getElementById(id).stop();
}
function marqueePlay(id){
	document.getElementById(id).start();
}

function imgzoom(id) {
  window.open('http://www.solo-racing.com.ar/img.php?id=' + id,'','width=100, height=100, left=20, top=20, scrollbars=auto');
}

function viewIMG(id) {
  window.open('http://www.solo-racing.com.ar/img/img.php?id=' + id,'','width=300, height=200, left=20, top=20, scrollbars=1');
}

function printt(id,type) {
 window.open('http://www.solo-racing.com.ar/print.php?type=' + type + '&id=' + id,'Imprimir','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=595,height=350');
}

function comments(tipo,id) {
  window.open('http://www.solo-racing.com.ar/comments.php?tipo=' + tipo + '&view=' + id,'comments','width=505, height=400, left=-1, top=-1, scrollbars=1, resize=0');
}

function FormComments() {
  if (document.forms[0]['user'].value != "") {
    if (document.forms[0]['mail'].value != "") {
      if (document.forms[0]['comment'].value != "") {
        return true;
      }
      else {
        alert("Por favor, ingrese el comentario"); document.forms[0]['comment'].focus();
        return false;
      }
    }
    else {
      alert("Por favor, ingrese su email (no será publicado)"); document.forms[0]['mail'].focus();
      return false;
    }
  }
  else {
    alert("Por favor, ingrese su nombre"); document.forms[0]['user'].focus();
    return false;
  }
}

function hiddenBannerHome() {
  document.getElementById('bannerHome').style.display = 'none';
}