//*************************************************************************************************
//Open Video

function SetVideoLinks(){
		
		$('.VideoLink').click(function(e){
		e.preventDefault();
		
		var VideoRef = $(this).attr('href');
		var top = (screen.height /2)-270 ;
		var left = (screen.width / 2)-160;
		var theFeatures = "width=540,height=400,toolbar=no,menubar=no,location=no,scrollbars=no,status=no,resizable=no,top=" + top + ",left=" + left;
		var vidWindow= window.open(VideoRef ,"Video",theFeatures);
		vidWindow.focus();
		return false;
		
		});
		
		
		
	}
