// JavaScript Document

<!-- //Open Browser Windows
function MM_openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

function Resetforms(){
		if(document.wfsearch){
		document.wfsearch.reset();
		document.wfsearch.qt.focus();
	}
	if(document.searchform){
		document.searchform.reset();
		document.searchform.lastname_in.value = "Last name";
		document.searchform.firstname_in.value = "First";
	}
}


// html example: <a href="javascript:Start('URL')";>
function Start(page) {
OpenWin = this.open(page, "", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=700,height=370,top=50,left=50");
}


/* html example: <script language="JavaScript">buildheader("Team Member Resources","#","http://www.yahoo.com");</script>
First parm is site name, second is url for site (# can be used if this is the only page; use "" if it should not have a link), third is url for contact page.
*/
function buildheader(sName,sUrl,sContact){
txt = ""
txt = txt + "<div id='header'>"
txt = txt + "  <table width='100%' cellpadding='0' cellspacing='0'>"
txt = txt + "    <tr valign='top'>"
txt = txt + "      <td width='56' rowspan='2'><img class='logo' src='http://teamworks.wellsfargo.com/library/images/logo_wf_52x52.gif' width='52' height='52'></td>"
txt = txt + "      <td bgcolor='#3266CC' nowrap='nowrap'><img class='coach' src='http://teamworks.wellsfargo.com/library/images/image_header_coach_33x200.jpg' width='200' height='33'>"
txt = txt + "           <td bgcolor='#3266CC' nowrap='nowrap'><div align='right'>"
txt = txt + "              <table class='search'>"
txt = txt + "                <tr>"
txt = txt + "                  <td valign='middle' class='search'></td>"
txt = txt + "                  <td colspan='2' valign='middle' class='searchcell'></td>"
txt = txt + "                  <td valign='middle'></td>"
txt = txt + "                </tr>"
txt = txt + "              </table>"
txt = txt + "            </td></div>"
txt = txt + "        </form></td>"
txt = txt + "    </tr>"
txt = txt + "    <tr>"
txt = txt + "      <td valign='middle' class='rightblock' nowrap='nowrap'>"

txt = txt +          "<div class='breadcrumb'><a href='http://teamworks.wellsfargo.com/'>Teamworks</a>"
txt = txt + "</td><td valign='middle' class='rightblock' nowrap='nowrap'>&nbsp;&nbsp;</td>"
txt = txt + "    </tr>"
txt = txt + "  </table>"
txt = txt + "</div>"
document.write (txt);
}

//-->
