// showVid launches the mediaplayer window
function showVid()
{
	var vidplayer = window.open(this.href,'gamesPlayer','width=790,height=666');
	try {
		vidplayer.focus();
	}
	catch (e) {}
	return false;
}
