﻿// JScript File
var newwindow=null;
function playvideo(name,type,size)
{
    if (newwindow != null) 
    {
        if(newwindow.closed==false)
            newwindow.close();
    }   
    if(size=='small')
    {
        newwindow=window.open("playvideo.aspx?name="+name+"&type="+type+"&size="+size, "popup","location=0, menubar=0, resizable=0, scrollbars=0, status=0,titlebar=0, toolbar=0, height=375, width=350");
    }
    else
    {
        newwindow=window.open("playvideo.aspx?name="+name+"&type="+type+"&size="+size, "popup","location=0, menubar=0, resizable=0, scrollbars=0, status=0,titlebar=0, toolbar=0, height=544, width=688");
    }
}
