function ShowFullSize(filename)
{
var w=window.open('showfullsize.aspx?filename=' + filename ,'', 'width=500, height=500, left=50,top=50,toolbar=0,location=0,status=0,menubar=0,scrollbars=auto,resizable=1');
w.focus();
return false;
}

function ShowVideo(filename)
{
var w=window.open('/video/' + filename ,'', 'width=500, height=500, left=50,top=50,toolbar=0,location=0,status=0,menubar=0,scrollbars=auto,resizable=1');
w.focus();
return false;
 
}