	//
	//  Cookie Functions - Second Helping  (21-Jan-96)
	//  Written by:  Bill Dortch, hIdaho Design <bdortch@netw.com>
	//  The following functions are released to the public domain.
	//
	//  The Second Helping version of the cookie functions dispenses with
	//  my encode and decode functions, in favor of JavaScript's new built-in
	//  escape and unescape functions, which do more complete encoding, and
	//  which are probably much faster.
	//
	//  The new version also extends the SetCookie function, though in
	//  a backward-compatible manner, so if you used the First Helping of
	//  cookie functions as they were written, you will not need to change any
	//  code, unless you want to take advantage of the new capabilities.
	//
	//  The following changes were made to SetCookie:
	//
	//  1.  The expires parameter is now optional - that is, you can omit
	//      it instead of passing it null to expire the cookie at the end
	//      of the current session.
	//
	//  2.  An optional path parameter has been added.
	//
	//  3.  An optional domain parameter has been added.
	//
	//  4.  An optional secure parameter has been added.
	//
	//  For information on the significance of these parameters, and
	//  and on cookies in general, please refer to the official cookie
	//  spec, at:
	//
	//      http://www.netscape.com/newsref/std/cookie_spec.html    
	//
	//
	// "Internal" function to return the decoded value of a cookie
	//
	function getCookieVal (offset) {
	  var endstr = document.cookie.indexOf (";", offset);
	  if (endstr == -1)
		endstr = document.cookie.length;
	  return unescape(document.cookie.substring(offset, endstr));
	}

	//
	//  Function to return the value of the cookie specified by "name".
	//    name - String object containing the cookie name.
	//    returns - String object containing the cookie value, or null if
	//      the cookie does not exist.
	//
	function GetCookie (name) {
	  var arg = name + "=";
	  var alen = arg.length;
	  var clen = document.cookie.length;
	  var i = 0;
	  while (i < clen) {
		var j = i + alen;
		if (document.cookie.substring(i, j) == arg)
		  return getCookieVal (j);
		i = document.cookie.indexOf(" ", i) + 1;
		if (i == 0) break; 
	  }
	  return null;
	}

	//
	//  Function to create or update a cookie.
	//    name - String object object containing the cookie name.
	//    value - String object containing the cookie value.  May contain
	//      any valid string characters.
	//    [expires] - Date object containing the expiration data of the cookie.  If
	//      omitted or null, expires the cookie at the end of the current session.
	//    [path] - String object indicating the path for which the cookie is valid.
	//      If omitted or null, uses the path of the calling document.
	//    [domain] - String object indicating the domain for which the cookie is
	//      valid.  If omitted or null, uses the domain of the calling document.
	//    [secure] - Boolean (true/false) value indicating whether cookie transmission
	//      requires a secure channel (HTTPS).  
	//
	//  The first two parameters are required.  The others, if supplied, must
	//  be passed in the order listed above.  To omit an unused optional field,
	//  use null as a place holder.  For example, to call SetCookie using name,
	//  value and path, you would code:
	//
	//      SetCookie ("myCookieName", "myCookieValue", null, "/");
	//
	//  Note that trailing omitted parameters do not require a placeholder.
	//
	//  To set a secure cookie for path "/myPath", that expires after the
	//  current session, you might code:
	//
	//      SetCookie (myCookieVar, cookieValueVar, null, "/myPath", null, true);
	//
	function SetCookie (name, value) {
	  var argv = SetCookie.arguments;
	  var argc = SetCookie.arguments.length;
	  var expires = (argc > 2) ? argv[2] : null;
	  var path = (argc > 3) ? argv[3] : null;
	  var domain = (argc > 4) ? argv[4] : null;
	  var secure = (argc > 5) ? argv[5] : false;
	  document.cookie = name + "=" + escape (value) +
		((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
		((path == null) ? "" : ("; path=" + path)) +
		((domain == null) ? "" : ("; domain=" + domain)) +
		((secure == true) ? "; secure" : "");
	}

	//  Function to delete a cookie. (Sets expiration date to current date/time)
	//    name - String object containing the cookie name
	//
	function DeleteCookie (name) {
	  var exp = new Date();
	  exp.setTime (exp.getTime() - 1);  // This cookie is history
	  var cval = GetCookie (name);
	  document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
	}
	
var Name = GetCookie('DemoName');
var Pass = GetCookie('DemoPass');
// The General Public Access Links
var link_footer = '<tr>		<td width="100%" colspan="5" align="center"><br>		<center>		<font face="verdana,sans-serif" size="1" color="#595959"><a href="/index2.html">Home</a>  |  <a href="/who/index.html">Who We Are</a>  |  <a href="/process/index.html">Investment Process</a>  |  <a href="/biographies/index.html">Biographies</a>  |  <a href="/contact/index.html">Contact Us</a>  |  <a href="/login.html">Funds</a>  |  <a href="/login.html">Letters</a><br>Copyright © 2003 CA Partners LLC. All Rights Reserved.<br>Site Design by <a href="http://www.roughhousedesign.com/">Roughhouse Design, Inc.</a></font></center></td>	</tr></table><bb:menulib c="0"><script type="text/javascript" src="/menumachine.js"></script></bb:menulib><div id="bbML" style=" position: absolute; z-index: 1000; top: 174px; left: 207px; width: 566px; height: 32px; visibility: visible">			<bb:menu height="22" width="551" i="1" v="1.5"><script type="text/javascript">bbL=bbMenu.length;bbMenu[bbL]=new _bbroot(bbL,"bbML",0,0,0,4,0,0,1,15,4,"","","",1,0,400,"home","black",1,1,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0.05,0.2,0,"black",0,0,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0,0,0,/*URL*/"/images/spacer.gif",0);/*begin_bbMenuDefs*/bbMenu[bbL].bM("bbMenu1","","",56,22,/*URL*/"/index2.html",/*URL*/"/images/nav-home-off.gif",/*URL*/"/images/nav-home-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fp","","",89,22,/*URL*/"/who/index.html",/*URL*/"/images/nav-who-off.gif",/*URL*/"/images/nav-who-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fz","m42kh4fp","Goals and Objectives",150,22,/*URL*/"/who/who_what.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fx","m42kh4fp","Operating Principles",150,22,/*URL*/"/who/who_oper.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g0","m42kh4fp","Investment Philosophy",150,22,/*URL*/"/who/who_phil.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g9","m42kh4fp","Investment Approach",150,22,/*URL*/"/who/who_approach.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fq","","",129,22,/*URL*/"/process/index.html",/*URL*/"/images/nav-investment-off.gif",/*URL*/"/images/nav-investment-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g2","m42kh4fq","Selection Criteria",160,22,/*URL*/"/process/pro_how.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g6","m42kh4fq","Manager Termination",160,22,/*URL*/"/process/pro_termination.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g5","m42kh4fq","Timing of Termination",160,22,/*URL*/"/process/pro_timing.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fr","","",85,22,/*URL*/"/biographies/index.html",/*URL*/"/images/nav-bios-off.gif",/*URL*/"/images/nav-bios-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g7","m42kh4fr","Harrison H. Augur",150,22,/*URL*/"/biographies/bio_augur.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndb","m42kh4fr","Alastair Keith",150,22,/*URL*/"/biographies/bio_keith.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndc","m42kh4fr","Scott M. Kleberg",150,22,/*URL*/"/biographies/bio_kleberg.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fs","","",80,22,/*URL*/"/contact/index.html",/*URL*/"/images/nav-contact-off.gif",/*URL*/"/images/nav-contact-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4ft","","",53,22,/*URL*/"/login.html",/*URL*/"/images/nav-funds-off.gif",/*URL*/"/images/nav-funds-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fu","","",59,22,/*URL*/"/login.html",/*URL*/"/images/nav-letter-off.gif",/*URL*/"/images/nav-letter-on.gif","white","black","navy","white","","","","",1);/*end_bbMenuDefs*/bbMenu[bbL].buildLayers();</script>			</bb:menu></div></body></html>';




if (Name == "general"){
	if (Pass == "access"){
	link_footer = '<tr>		<td width="100%" colspan="5" align="center"><br>		<font face="verdana,sans-serif" size="1" color="#595959"><a href="/index3.html">Home</a>  |  <a href="/who/index.html">Who We Are</a>  |  <a href="/process/index.html">Investment Process</a>  |  <a href="/biographies/index.html">Biographies</a>  |  <a href="/contact/index.html">Contact Us</a>  |  <a href="/funds/index.html">Funds</a>  |  <a href="/letters/index.html">Letters</a><br>Copyright © 2003 CA Partners LLC. All Rights Reserved.<br>Site Design by <a href="http://www.roughhousedesign.com/">Roughhouse Design, Inc.</a></font></td>	</tr></table><bb:menulib c="0"><script type="/menumachine.js"></script></bb:menulib><div id="bbML" style=" position: absolute; z-index: 1000; top: 176px; left: 133px; width: 663px; height: 35px; visibility: visible">			<bb:menu height="22" width="662" i="1" v="1.5"><script type="text/javascript"> bbL=bbMenu.length;bbMenu[bbL]=new _bbroot(bbL,"bbML",0,0,0,4,0,0,1,15,4,"","","",1,0,400,"home","black",1,1,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0.25,0.1,0,"black",0,0,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0,0,0,/*URL*/"/images/spacer.gif",0,0,5,5);/*begin_bbMenuDefs*/bbMenu[bbL].bM("bbMenu1","","",56,22,/*URL*/"/index3.html",/*URL*/"/images/nav-home-off.gif",/*URL*/"/images/nav-home-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fp","","",89,22,/*URL*/"/who/index.html",/*URL*/"/images/nav-who-off.gif",/*URL*/"/images/nav-who-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fz","m42kh4fp","Goals and Objectives",150,22,/*URL*/"/who/who_what.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fx","m42kh4fp","Operating Principles",150,22,/*URL*/"/who/who_oper.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g0","m42kh4fp","Investment Philosophy",150,22,/*URL*/"/who/who_phil.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g9","m42kh4fp","Investment Approach",150,22,/*URL*/"/who/who_approach.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fq","","",129,22,/*URL*/"/process/index.html",/*URL*/"/images/nav-investment-off.gif",/*URL*/"/images/nav-investment-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g2","m42kh4fq","Selection Criteria",160,22,/*URL*/"/process/pro_how.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g6","m42kh4fq","Manager Termination",160,22,/*URL*/"/process/pro_termination.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g5","m42kh4fq","Timing of Termination",160,22,/*URL*/"/process/pro_timing.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fr","","",85,22,/*URL*/"/biographies/index.html",/*URL*/"/images/nav-bios-off.gif",/*URL*/"/images/nav-bios-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g7","m42kh4fr","Harrison H. Augur",150,22,/*URL*/"/biographies/bio_augur.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndb","m42kh4fr","Alastair Keith",150,22,/*URL*/"/biographies/bio_keith.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndc","m42kh4fr","Scott M. Kleberg",150,22,/*URL*/"/biographies/bio_kleberg.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fs","","",80,22,/*URL*/"/contact/index.html",/*URL*/"/images/nav-contact-off.gif",/*URL*/"/images/nav-contact-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4ft","","",53,22,/*URL*/"/funds/index.html",/*URL*/"/images/nav-funds-off.gif",/*URL*/"/images/nav-funds-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m43o7ndf","m42kh4ft","Performance Caveats",200,22,/*URL*/"/funds/performance.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndg","m42kh4ft","SEC Disclosures",200,22,/*URL*/"/funds/sec-index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4d","m43o7ndg","Privacy Policy Clients",200,22,/*URL*/"/Privacy_Policy_Clients.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4e","m43o7ndg","Form ADV Part II",200,22,/*URL*/"/ADV_PT_II.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndh","m42kh4ft","CAM Fund (CAM)",200,22,/*URL*/"/funds/cam/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndn","m43o7ndh","CAM Performance Data",200,22,/*URL*/"/funds/cam/cam_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndp","m43o7ndh","Offering Memorandum Summary",200,22,/*URL*/"/funds/cam/cam_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3r","m42kh4ft","CAM Special Opportunities Fund (CSOF)",200,22,/*URL*/"/funds/csc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndv","m1uxhr3r","CSOF Performance Data",200,22,/*URL*/"/funds/csc/csc_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndw","m1uxhr3r","Offering Memorandum Summary",200,22,/*URL*/"/funds/csc/csc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4c","m42kh4ft","CAM International Fund (CI)",200,22,/*URL*/"/funds/ci/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne3","m352yf4c","CI Performance Data",200,22,/*URL*/"/funds/ci/ci_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne4","m352yf4c","Offering Memorandum Summary",200,22,/*URL*/"/funds/ci/ci_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m420dv3n","m42kh4ft","CAM Multi-Strategy Fund (MSF)",200,22,/*URL*/"/funds/msf/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3v","m420dv3n","Offering Memorandum Summary",200,22,/*URL*/"/funds/msf/msf_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("mac8q06","m42kh4ft","CA Partners Offshore Fund SPC",200,22,/*URL*/"/funds/spc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m420dv3o","mac8q06","Offering Memorandum Summary",200,22,/*URL*/"/funds/spc/spc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fu","","",59,22,/*URL*/"/letters/index.html",/*URL*/"/images/nav-letter-off.gif",/*URL*/"/images/nav-letter-on.gif","white","black","navy","white","","","","",1);/*end_bbMenuDefs*/bbMenu[bbL].buildLayers();</script>		</bb:menu></div></body></html>';
	}
}

if (Name == "alastair"){
	if (Pass == "kei100"){
	link_footer = '<tr>		<td width="100%" colspan="5" align="center"><br>		<font face="verdana,sans-serif" size="1" color="#595959"><a href="/index3.html">Home</a>  |  <a href="/who/index.html">Who We Are</a>  |  <a href="/process/index.html">Investment Process</a>  |  <a href="/biographies/index.html">Biographies</a>  |  <a href="/contact/index.html">Contact Us</a>  |  <a href="/funds/index.html">Funds</a>  |  <a href="/letters/index.html">Letters</a>  |  <a href="/alastair/index.html">Limited Partners</a><br>Copyright © 2003 CA Partners LLC. All Rights Reserved.<br>Site Design by <a href="http://www.roughhousedesign.com/">Roughhouse Design, Inc.</a></font></td>	</tr></table><bb:menulib c="0"><script type="text/javascript" src="/menumachine.js"></script></bb:menulib><div id="bbML" style=" position: absolute; z-index: 1000; top: 176px; left: 133px; width: 663px; height: 35px; visibility: visible">			<bb:menu height="22" width="662" i="1" v="1.5"><script type="text/javascript">bbL=bbMenu.length;bbMenu[bbL]=new _bbroot(bbL,"bbML",0,0,0,4,0,0,1,15,4,"","","",1,0,400,"home","black",1,1,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0.25,0.1,0,"black",0,0,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0,0,0,/*URL*/"/images/spacer.gif",0,0,5,5);/*begin_bbMenuDefs*/bbMenu[bbL].bM("bbMenu1","","",56,22,/*URL*/"/index3.html",/*URL*/"/images/nav-home-off.gif",/*URL*/"/images/nav-home-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fp","","",89,22,/*URL*/"/who/index.html",/*URL*/"/images/nav-who-off.gif",/*URL*/"/images/nav-who-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fz","m42kh4fp","Goals and Objectives",150,22,/*URL*/"/who/who_what.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fx","m42kh4fp","Operating Principles",150,22,/*URL*/"/who/who_oper.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g0","m42kh4fp","Investment Philosophy",150,22,/*URL*/"/who/who_phil.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g9","m42kh4fp","Investment Approach",150,22,/*URL*/"/who/who_approach.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fq","","",129,22,/*URL*/"/process/index.html",/*URL*/"/images/nav-investment-off.gif",/*URL*/"/images/nav-investment-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g2","m42kh4fq","Selection Criteria",160,22,/*URL*/"/process/pro_how.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g6","m42kh4fq","Manager Termination",160,22,/*URL*/"/process/pro_termination.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g5","m42kh4fq","Timing of Termination",160,22,/*URL*/"/process/pro_timing.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fr","","",85,22,/*URL*/"/biographies/index.html",/*URL*/"/images/nav-bios-off.gif",/*URL*/"/images/nav-bios-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g7","m42kh4fr","Harrison H. alastair",150,22,/*URL*/"/biographies/bio_alastair.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndb","m42kh4fr","Alastair Keith",150,22,/*URL*/"/biographies/bio_keith.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndc","m42kh4fr","Scott M. Kleberg",150,22,/*URL*/"/biographies/bio_kleberg.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fs","","",80,22,/*URL*/"/contact/index.html",/*URL*/"/images/nav-contact-off.gif",/*URL*/"/images/nav-contact-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4ft","","",53,22,/*URL*/"/funds/index.html",/*URL*/"/images/nav-funds-off.gif",/*URL*/"/images/nav-funds-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m43o7ndf","m42kh4ft","Performance Caveats",200,22,/*URL*/"/funds/performance.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndg","m42kh4ft","SEC Disclosures",200,22,/*URL*/"/funds/sec-index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4j","m43o7ndg","Privacy Policy Clients",200,22,/*URL*/"Privacy_Policy_Clients.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4k","m43o7ndg","Form ADV Part II",200,22,/*URL*/"ADV_PT_II.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndh","m42kh4ft","CAM Fund (CAM)",200,22,/*URL*/"/funds/cam/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndn","m43o7ndh","CAM Performance Data",200,22,/*URL*/"/funds/cam/cam_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndp","m43o7ndh","Offering Memorandum Summary",200,22,/*URL*/"/funds/cam/cam_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3r","m42kh4ft","CAM Special Opportunities Fund (CSOF)",200,22,/*URL*/"/funds/csc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndv","m1uxhr3r","CSOF Performance Data",200,22,/*URL*/"/funds/csc/csc_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndw","m1uxhr3r","Offering Memorandum Summary",200,22,/*URL*/"/funds/csc/csc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4i","m42kh4ft","CAM International Fund (CI)",200,22,/*URL*/"/funds/ci/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne3","m352yf4i","CI Performance Data",200,22,/*URL*/"/funds/ci/ci_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne4","m352yf4i","Offering Memorandum Summary",200,22,/*URL*/"/funds/ci/ci_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42520bs","m42kh4ft","CAM Multi-Strategy Fund (MSF)",200,22,/*URL*/"/funds/msf/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3v","m42520bs","Offering Memorandum Summary",200,22,/*URL*/"/funds/msf/msf_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("mac8q07","m42kh4ft","CA Partners Offshore Fund SPC",200,22,/*URL*/"/spc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42520bt","mac8q07","Offering Memorandum Summary",200,22,/*URL*/"/funds/spc/spc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fu","","",59,22,/*URL*/"/letters/index.html",/*URL*/"/images/nav-letter-off.gif",/*URL*/"/images/nav-letter-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fw","","",111,22,/*URL*/"/alastair/index.html",/*URL*/"/images/nav-partners-off.gif",/*URL*/"/images/nav-partners-on.gif","white","black","navy","white","","","","",1);/*end_bbMenuDefs*/bbMenu[bbL].buildLayers();//</script>			</bb:menu></div></body></html>';
	}
}


if (Name == "augur"){
	if (Pass == "har101"){
	link_footer = '<tr>		<td width="100%" colspan="5" align="center"><br>		<font face="verdana,sans-serif" size="1" color="#595959"><a href="/index3.html">Home</a>  |  <a href="/who/index.html">Who We Are</a>  |  <a href="/process/index.html">Investment Process</a>  |  <a href="/biographies/index.html">Biographies</a>  |  <a href="/contact/index.html">Contact Us</a>  |  <a href="/funds/index.html">Funds</a>  |  <a href="/letters/index.html">Letters</a>  |  <a href="/augur/index.html">Limited Partners</a><br>Copyright © 2003 CA Partners LLC. All Rights Reserved.<br>Site Design by <a href="http://www.roughhousedesign.com/">Roughhouse Design, Inc.</a></font></td>	</tr></table><bb:menulib c="0"><script type="text/javascript" src="/menumachine.js"></script></bb:menulib><div id="bbML" style=" position: absolute; z-index: 1000; top: 176px; left: 133px; width: 663px; height: 35px; visibility: visible">			<bb:menu height="22" width="662" i="1" v="1.5"><script type="text/javascript">bbL=bbMenu.length;bbMenu[bbL]=new _bbroot(bbL,"bbML",0,0,0,4,0,0,1,15,4,"","","",1,0,400,"home","black",1,1,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0.25,0.1,0,"black",0,0,"Verdana,Geneva,Sans-serif",11,0,0,"left",5,5,0,0,0,/*URL*/"/images/spacer.gif",0,0,5,5);/*begin_bbMenuDefs*/bbMenu[bbL].bM("bbMenu1","","",56,22,/*URL*/"/index3.html",/*URL*/"/images/nav-home-off.gif",/*URL*/"/images/nav-home-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fp","","",89,22,/*URL*/"/who/index.html",/*URL*/"/images/nav-who-off.gif",/*URL*/"/images/nav-who-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fz","m42kh4fp","Goals and Objectives",150,22,/*URL*/"/who/who_what.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fx","m42kh4fp","Operating Principles",150,22,/*URL*/"/who/who_oper.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g0","m42kh4fp","Investment Philosophy",150,22,/*URL*/"/who/who_phil.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g9","m42kh4fp","Investment Approach",150,22,/*URL*/"/who/who_approach.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fq","","",129,22,/*URL*/"/process/index.html",/*URL*/"/images/nav-investment-off.gif",/*URL*/"/images/nav-investment-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g2","m42kh4fq","Selection Criteria",160,22,/*URL*/"/process/pro_how.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g6","m42kh4fq","Manager Termination",160,22,/*URL*/"/process/pro_termination.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4g5","m42kh4fq","Timing of Termination",160,22,/*URL*/"/process/pro_timing.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fr","","",85,22,/*URL*/"/biographies/index.html",/*URL*/"/images/nav-bios-off.gif",/*URL*/"/images/nav-bios-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4g7","m42kh4fr","Harrison H. Augur",150,22,/*URL*/"/biographies/bio_augur.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndb","m42kh4fr","Alastair Keith",150,22,/*URL*/"/biographies/bio_keith.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndc","m42kh4fr","Scott M. Kleberg",150,22,/*URL*/"/biographies/bio_kleberg.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fs","","",80,22,/*URL*/"/contact/index.html",/*URL*/"/images/nav-contact-off.gif",/*URL*/"/images/nav-contact-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4ft","","",53,22,/*URL*/"/funds/index.html",/*URL*/"/images/nav-funds-off.gif",/*URL*/"/images/nav-funds-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m43o7ndf","m42kh4ft","Performance Caveats",200,22,/*URL*/"/funds/performance.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndg","m42kh4ft","SEC Disclosures",200,22,/*URL*/"/funds/sec-index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4j","m43o7ndg","Privacy Policy Clients",200,22,/*URL*/"Privacy_Policy_Clients.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4k","m43o7ndg","Form ADV Part II",200,22,/*URL*/"ADV_PT_II.pdf","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndh","m42kh4ft","CAM Fund (CAM)",200,22,/*URL*/"/funds/cam/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndn","m43o7ndh","CAM Performance Data",200,22,/*URL*/"/funds/cam/cam_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndp","m43o7ndh","Offering Memorandum Summary",200,22,/*URL*/"/funds/cam/cam_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3r","m42kh4ft","CAM Special Opportunities Fund (CSOF)",200,22,/*URL*/"/funds/csc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndv","m1uxhr3r","CSOF Performance Data",200,22,/*URL*/"/funds/csc/csc_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ndw","m1uxhr3r","Offering Memorandum Summary",200,22,/*URL*/"/funds/csc/csc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m352yf4i","m42kh4ft","CAM International Fund (CI)",200,22,/*URL*/"/funds/ci/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne3","m352yf4i","CI Performance Data",200,22,/*URL*/"/funds/ci/ci_data.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m43o7ne4","m352yf4i","Offering Memorandum Summary",200,22,/*URL*/"/funds/ci/ci_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42520bs","m42kh4ft","CAM Multi-Strategy Fund (MSF)",200,22,/*URL*/"/funds/msf/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m1uxhr3v","m42520bs","Offering Memorandum Summary",200,22,/*URL*/"/funds/msf/msf_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("mac8q09","m42kh4ft","CA Partners Offshore Fund SPC",200,22,/*URL*/"/funds/spc/index.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42520bt","mac8q09","Offering Memorandum Summary",200,22,/*URL*/"/funds/spc/spc_summary.html","","","white","#c1c1c1","#a7a7a7","#002157","","","","",1);bbMenu[bbL].bM("m42kh4fu","","",59,22,/*URL*/"/letters/index.html",/*URL*/"/images/nav-letter-off.gif",/*URL*/"/images/nav-letter-on.gif","white","black","navy","white","","","","",1);bbMenu[bbL].bM("m42kh4fw","","",111,22,/*URL*/"/augur/index.html",/*URL*/"/images/nav-partners-off.gif",/*URL*/"/images/nav-partners-on.gif","white","black","navy","white","","","","",1);/*end_bbMenuDefs*/bbMenu[bbL].buildLayers();//</script>			</bb:menu></div></body></html>';
	}
}



