/*
 *  playlists.js - javascript routines for calgarydj playlists page
 *  $Revision: 1.17 $
 *  $Date: 2008/10/15 13:45:37 $
 *
 *  copyright 2006 Jim E. Sontag
 *
 ****************************************************************/
 
var msExploder = navigator.appName.match( /Microsoft/ ) ? true : false;

function playList( idx )
{
  var param
  var str = 'listPlay.php?playlist='+idx

  if( msExploder) {
    param = 'HEIGHT=530,WIDTH=430,LEFT=400,TOP=100'
  } else {
    param = 'HEIGHT=420,WIDTH=430,screenX=400,screenY=300'
  }
  
  var tplayer = window.open( str, 'tplay', param )
  
  if( !tplayer )
    alert( "Popup windows are blocked for this site." )
  
  if( tplayer && tplayer.focus ) tplayer.focus()
}

