function PopupVid(vid,width,height,name) {
	var ptr = window.open( "videoplayer.htm?vid="+vid+"&width="+width+"&height="+height+"&name="+name, vid, "resizable=1,HEIGHT="+height+", WIDTH="+width);
	if(ptr) ptr.focus();
	return false;
}

	function PopupMusic(song, name) {
		var ptr = window.open("musicplayer.htm?song="+song+"&name='"+name+"'", "music_player", "resizable=1,HEIGHT=80,WIDTH=600");
		if(ptr) ptr.focus();
		return false;
	}

