function pic( address, width, height )
{
 width=width+10;
 height=height+35;

 newWindow = window.open( address, "imgWindow",
                    "toolbar=no,location=no,directories=no,"+
                    "status=no,menubar=no,scrollbars=yes,"+
                    "resizable=yes,width="+width+",height="+height );
 newWindow.resizeTo( width+50, height+50 );
 newWindow.focus();
}

function video( address )
{
 videoWindow = window.open( address, "videoWindow",
                    "toolbar=no,location=no,directories=no,"+
                    "status=no,menubar=no,scrollbars=no,"+
                    "resizable=no,width=400,height=320" );
 videoWindow.focus();
}

function videoWide( address )
{
 videoWindow = window.open( address, "videoWindow",
                    "toolbar=no,location=no,directories=no,"+
                    "status=no,menubar=no,scrollbars=no,"+
                    "resizable=no,width=530,height=320" );
 videoWindow.focus();
}
