function openPlayer(videoName,entryName) {
	properties = "scrollbars=no,menubar=no,height=300,width=350,resizable=yes,toolbar=no,location=no,status=no";
	window.open('/include/player.php?videoID='+videoName+'&entryName='+entryName,'',properties);
}
function openVideo(videoName,width,height) {
	properties = "scrollbars=no,menubar=no,height="+(height+16)+",width="+width+",resizable=yes,toolbar=no,location=no,status=no";
	window.open('/video/'+videoName,'',properties);
}
function openWindow(url,width,height) {
	properties = "scrollbars=no,menubar=no,height="+(height+16)+",width="+width+",resizable=yes,toolbar=no,location=no,status=no";
	window.open(url,'',properties);
}
