function WindowPos(popW, popH)
{
    var h = window.screen.height
    var w = window.screen.width
    var leftPos = (w - popW) / 2;
    var topPos  = (h - popH) / 2;

    //alert("H = " + h + " --- W = " + w)

    return 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos;
}

function PupThumbs()
{
   var width  = 890
   var height = 500
   var name   = 'thumbs1'
   var url    = 'thumbs-frame.php?mode=active&init=1'

   if (navigator.userAgent.indexOf('Netscape/7') > 0)
   {
      width = 960
   }

   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + jspos);
   win.focus();
}

function PupArchive(cid)
{
   var width  = 890
   var height = 500
   var name   = 'thumbs2'
   var url    = 'thumbs-frame.php?mode=archive&init=1'

   if (cid)
   {
       url = url + '&c=' + cid;
   }
   if (navigator.userAgent.indexOf('Netscape/7') > 0)
   {
      width = 960
   }

   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + jspos);
   win.focus();
}

function PupArtist(cid, sid)
{
   var width  = 860
   var height = 480
   var name   = 'artist'
   var url    = 'artist-frame.php?c=' + cid + '&' + 's=' + sid

   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + jspos);
   win.focus();
}

function PupBattle(cname)
{
   var width  = 870
   var height = 420
   var name   = 'battle'
   var url    = 'vote-battle-frame.php?c=' + cname
   
   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + jspos);
   win.focus();
}

function PupRank(cname)
{
   var width  = 910
   var height = 450
   var name   = 'battle'
   var url    = 'vote-rank-frame.php?c=' + cname
   
   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,' + jspos);
   win.focus();
}

function PupThemeDetails(c)
{
   var width  = 350
   var height = 450
   var name   = 'themesDetail'
   var url    = 'themes-detail.php?c=' + c
   
   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,' + jspos);
   win.focus();
}

function PupTerms()
{
   var width  = window.screen.width
   var height = 500
   var name   = 'PrivacyPolicy'
   var url    = 'terms.html'
   
   var jspos = WindowPos(width, height)
   var win = window.open(url, name, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,' + jspos);
   win.focus();
}


