// Function to open the videoplayer window

function openVideoPlayer(item) {
	var winl = (screen.width - 910) / 2;
	var wint = (screen.height - 590) / 2;
	
	var winprops = 'height='+590+',width='+910+',top='+wint+',left='+winl+',scrollbars=no';
	var win = window.open('http://videoplayer.neos.nl/cordys/index.php?item=' + item,'Cordys', winprops);
}
