function openVideoWindow(file)
{
	var width=500;
	var height=430;
	var win = window.open('/video.aspx/' + file, 'newWindow', 'width=' + width + ',height='
	    +height+',scrollbars=no,resizable=yes,status=yes');
	return false;
}


