function OpenVideo(sPageUrl){
	var width  = 480;
	var height = 314;
	var left   = (screen.width - width)/2;
	var top    = (screen.height - height)/2;
	var params = 'width='+width+', height='+height+', top='+top+', left='+left;

	window.open(sPageUrl,'Video',params + ',toolbar=0,location=0,scrollbars=0,resizable=0');
	return false;
}