// ****************************************************************************
// openAudioPlayer
// ****************************************************************************
function openAudioPlayer() {
  popupwindow("player.html", "audio", 228, 198);
}

// ****************************************************************************
// popupwindow
// ****************************************************************************
function popupwindow(url,name,windowWidth,windowHeight){
  myleft=(screen.width)?(screen.width-windowWidth)/2:100;
	mytop=(screen.height)?(screen.height-windowHeight)/2:100;
	properties = "width="+windowWidth+",height="+windowHeight+",scrollbars=yes, top="+mytop+",left="+myleft;
  window.open(url,name,properties)
}

// ****************************************************************************
// shadowboxOpen
// ****************************************************************************
function shadowboxOpen(strTitle, strURL, nWidth, nHeight) {
    // open a welcome message
    Shadowbox.open({
        player:     'iframe',
        title:      strTitle,
        content:    strURL,
        height:     nHeight,
        width:      nWidth
    });
}
