/*================================================================================================================
	This function opens a new window
	--- use this code within your html .....
		<a href="#" onclick="openWindow('Deferred_Transaction_Billing_List.html','Options Management System','width=600,height=500')">
=================================================================================================================*/
function openWindow(theURL,winName) { 
  features="width=600,height=400,scrollbars=yes";
  window.open(theURL,winName,features);
}
