﻿function openCitation(theURL,winName) 
{ 
	// The features are not passed so they can be modified outside of the C# codebase.
	if (window.cWindow && !window.cWindow.closed) 
	{
		cWindow.close()
	}	
	cWindow = window.open(theURL,winName,'left=10,top=10,width=700,height=350,location=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,menubar=no');
	cWindow.focus();
}

function checkMoreAboutBoxes()
{            
   var Inputs = document.getElementsByTagName("input");     
   for(var n = 0; n < Inputs.length; ++n)
      if(Inputs[n].type == 'checkbox' && Inputs[n].checked)
         return true;        
            
   alert('Please select a topic.');
   return false;

}
