﻿// JScript File

function openplayer(id)  
{
 if (id !== 0) 
  { 
     if ((arguments[1]=='') || (arguments[1]==undefined))
    {
     player = window.open('player.aspx?prmTIPO=CONTENIDO&prmID=' + id,'player','top=20,left=20,width=500,height=370');
      player.focus();
    }
    else
    {
     player = window.open('playersesion.aspx?prmid=' + id + '&prmlink='+ arguments[1],'player','top=20,left=20,width=500,height=560');
      player.focus();
      
    }
    
 }
 else
 {
    player = window.open('player.aspx?prmTIPO=ONLINE','player','top=20,left=20,width=500,height=370');
    player.focus();
 }
}

function openplayer2(id)  
{
 if (id !== 0) 
  {
    player = window.open('datosonline.aspx','player','top=20,left=20,width=450,height=450');
    player.focus();
 }
}





