function open_in_parent(url)
{
   opener.location.href = url;
}

function openInParentWindow(url)
{
   opener.location.href = url;
   opener.focus();
}

function openInParentWindowClose(url)
{
   opener.location.href = url;
   opener.focus();
   window.close();
}

function openVideo(clip)
{
   var string = "width=600,height=616,resizable=yes,toolbar=no,status=no,location=no,scrollbars=yes";
   var video = window.open('/video/video.asp?clip=' + clip, 'video', string) ;
   video.focus();
}
function openVideo2(clip)
{
   var string = "width=700,height=720,resizable=yes,toolbar=no,status=no,location=no,scrollbars=yes";
   var video = window.open('/video/video2.asp?clip=' + clip, 'video', string) ;
   video.focus();
}


