<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
  return false;
}
var winnames = new Array();
 
function doesPopupExist(window_name) {
  var exist = false;
    if (self.name  == window_name) {
      exist = true;
	  return exist;
    }
  for (i=0; i<winnames.length; i++) {
    if (winnames[i] == window_name) {
      exist = true;
      break;
    }
  }
  return exist;
}

function SubToSubLink(target,linkoptions) {
	var WinTest = false;
	WinTest = doesPopupExist('MastSub')
	if (WinTest) /*self.name*/
	  {
		if (self.name == 'MastSub')
		  {
		  document.write('<a href="'+target+'" '+linkoptions+' >'); 
		  }
		else
		  {
		  window.name='MastSub'
		  document.write('<a href="'+target+'" '+linkoptions+' onClick="MM_openBrWindow(\'index.cfm\',\'MastMain\',\'location,menubar,status,resizable,scrollbars\')">'); 
		  }
	  }
	else
	  {
	  window.name='MastSub'
	  document.write('<a href="index.cfm" '+linkoptions+' onClick="MM_openBrWindow(\'index.cfm\',\'MastMain\',\'location,menubar,status,resizable,scrollbars\')">'); 
	  }
}

function SubToHomeLink(target,linkoptions) {
	var WinTest = false;
	WinTest = doesPopupExist('MastSub')
	if (WinTest)
	  {
		if (self.name == 'MastSub')
		  {
		  document.write('<a href="javascript:self.close()" '+linkoptions+' >'); 
		  }
		else
		  {
		  document.write('<a href="index.cfm" '+linkoptions+' >'); 
		  }
	  }
	else
	  {
	  document.write('<a href="index.cfm" '+linkoptions+' >'); 
	  }
}

function HomeToSubLink(target,linkoptions) {
	var WinTest = false;
	WinTest = doesPopupExist('MastSub')
	if (WinTest) 
	  {
		if (self.name == 'MastSub')
		  {
		  document.write('<a href="'+target+'" '+linkoptions+' onClick="MM_openBrWindow(\'index.cfm\',\'MastMain\',\'location,menubar,status,resizable,scrollbars\')">'); 
		  }
		else
		  {
		  document.write('<a href="#top" '+linkoptions+' onClick="MM_openBrWindow(\''+target+'\',\'MastSub\',\'scrollbars,width=800,height=600\')">'); 
		  }
	  }
	else
	  {
	  document.write('<a href="#top" '+linkoptions+' onClick="MM_openBrWindow(\''+target+'\',\'MastSub\',\'scrollbars,width=800,height=600\')">'); 
	  }
}
-->
