// JavaScript Document

// COMANDOS DE JANELAS POPUP

function View(URL) {

   var width = 520;
   var height = 450;

   var left = 200;
   var top = 100;

   window.open(URL,'View', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function Alterar(URL) {

   var width = 320;
   var height = 200;

   var left = 400;
   var top = 300;

   window.open(URL,'Alterar', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function Noticia(URL) {

   var width = 800;
   var height = 600;

   var left = 0;
   var top = 0;

   window.open(URL,'Noticia', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=yes, fullscreen=no');

}

function Album(URL) {

   var width = 700;
   var height = 520;

   var left = 20;
   var top = 10;

   window.open(URL,'Album', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=yes, fullscreen=no');

}

function Locutor(URL) {

   var width = 700;
   var height = 600;

   var left = 100;
   var top = 20;

   window.open(URL,'Locutor', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=yes, toolbar=no, location=no, directories=no, menubar=no, resizable=yes, fullscreen=no');

}