﻿function scivil(xmlFile,thisCase)
{
	  NewWindow("popUp.aspx?xmlFile=" + xmlFile + "&thisCase=" + thisCase,'newWindow','location=no,menubar=no,directories=no,toolbar=no,statusbar=no,resizable=no,scrollbars=no,titlebar=no,width=590,height=325;');
}

function NewWindow(URLtoOpen,windowName,windowFeatures)
{
if (typeof(newWindow)!='undefined') 
   {newWindow.close();}
   newWindow=window.open(URLtoOpen,windowName,windowFeatures);
}