// JavaScript Document
var WindowObjectReference = null; // global variable

function healthMonitoringPopupWindow()
{
  if(WindowObjectReference == null || WindowObjectReference.closed)
  /* if the pointer to the window object in memory does not exist
     or if such pointer exists but the window was closed */

  {
	url = "/health_monitoring/";
	
	
	/*if(BrowserDetect.browser=="Safari" || BrowserDetect.browser=="Firefox" || BrowserDetect.browser=="Opera" ){
    	WindowObjectReferenceAnnual = window.open(url,
   "call", "scrollbars=yes,width=760,height=600,resizable=yes");
	}else{*/
		WindowObjectReference = window.open(url,
   "call", "scrollbars=yes,toolbar=1,location=1,width=786,height=700,resizable=yes");
	/*}*/
    /* then create it. The new window will be created and
       will be brought on top of any other window. */
  }
  else
  {
    WindowObjectReference.focus();
    /* else the window reference must exist and the window
       is not closed; therefore, we can bring it back on top of any other
       window with the focus() method. There would be no need to re-create
       the window or to reload the referenced resource. */
  };
  
  
}


