// JavaScript Document
function popupVideo(videoId){
 var width = 358;
 var height = 268;
 var left = (screen.width - width)/2;
 var top = (screen.height - height)/2;
 videop = window.open('/popupplayer.php?videoId='+videoId, 'videoplayer', 'width='+width+',height='+height+',left='+left+',top='+top);
 videop.focus();
 return true;
}
function popupmp3Player(path, track){
 var width = 230;
 var height = 142;
 var left = (screen.width - width)/2;
 var top = (screen.height - height)/2;
 musicp = window.open('/mp3/mp3player.php?path='+path+'&track='+track, 'musicplayer', 'width='+width+',height='+height+',left='+left+',top='+top);
 musicp.focus();
 return true;
}
function popupText(textId){
 var width = 358;
 var height = 268;
 var left = (screen.width - width)/2;
 var top = (screen.height - height)/2;
 texts = window.open('/textshower.php?textId='+textId, 'Text', 'width='+width+',height='+height+',left='+left+',top='+top);
 texts.focus();
 return true;
}

