﻿// JScript File
// window to open a TVC popup
function openDocument(url)
{

    if (confirm('This will download the file. Do you want to continue?')) 
    {
      //  popup(url,"console","800","600");
	    var tvcWin = window.open(url,'TVC','toolbar=no,width=800,height=600,top=300,left=450,status=yes, scrollbars=yes,resizeable=yes'); 
	    tvcWin.focus();
	}
}





