function wdcntrlpanelupdate()
{
  //check if wired desk hover window as used by View WIP Webiste - if so we should be OK
  //this avoids live serving window going passed this check
  if (window.name == 'wdhover')
  {
	//check if this was a popup window - if it is then this could be monitored by
	//wired desk control panel
	if (window.opener != null) 
	{
		//check for right window i.e. Wired desk control panel
		if (window.opener.name == 'wdcontrolpanel')
		{
			//yes this is wired desk control panel
			var opener_url = new String(window.location.pathname);
			window.opener.updatename('wd_page_displayed', opener_url);
		}
	}
  }
}

