/////////////////////////////////////////////////////////
// sripts.js                                           //
// scripts for functioning throughout the site. This   //
// file is included by all the files.                  //
// Author: VentureNet YL                               //
// Date Created: May 18th, 2004                        //
// Last Modified: June 16th, 2004                       //
/////////////////////////////////////////////////////////

//email popup javascript
//as people click on an email address, the clickable link calls this function
//the function pop up a dynamic page and pass the parameter to that page.
//! to be finished !
function mailbarw(addr){
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('http://www.bradleyarant.com/mailbarw.cfm?addr=" + addr +"', '" + id + "', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=1, width=330, height=450 left = 225, top = 125');");
}


//change displayed office address
//This is used by firm_offices.htm.
//By calling this function with number 1-5 it will display the corresponding office address under the office pictures.
//If the parameter is outside of range [1,5], then it will clear out the address section.
function office_addr(n){
	if(h=document.getElementById("officeaddr"))
	{
		if(n<1 || n>5)
			h.innerHTML="";
		else if(n==1)
			h.innerHTML="One Federal Place <img src='images/dot_gray.gif'> 1819 Fifth Avenue North <img src='images/dot_gray.gif'> Birmingham, Alabama 35203<br>T (205) 521-8000 <img src='images/dot_gray.gif'> F (205) 521-8800";
		else if(n==2)
			h.innerHTML="200 Clinton Avenue West, Suite 900 <img src='images/dot_gray.gif'> Huntsville, Alabama 35801-4900<br>T (256) 517-5100  <img src='images/dot_gray.gif'> F (256) 517-5200";
		else if(n==3)
			h.innerHTML="Alabama Center for Commerce <img src='images/dot_gray.gif'> 401 Adams Avenue, Suite 780 <img src='images/dot_gray.gif'> Montgomery, AL 36104<br>T (334) 956-7700 <img src='images/dot_gray.gif'> F (334) 956-7701";
		else if(n==4)
			h.innerHTML="One Jackson Place, Suite 450 <img src='images/dot_gray.gif'> 188 E. Capitol Street <img src='images/dot_gray.gif'> Jackson, MS 39201<br>T (601) 948-8000 <img src='images/dot_gray.gif'> F (601) 948-3000";
		else if(n==5)
			h.innerHTML="1200 G Street, N.W <img src='images/dot_gray.gif'> Suite 550 <img src='images/dot_gray.gif'> Washington, DC 20005<br>T (202) 393-7150 <img src='images/dot_gray.gif'> F (202) 347-1684";
	}
}

//submit search parameter to the search page
//basic fuction: calls the submit() on the search box form
function submit_search(){
	//alert("submit_search called");
	document.search_form.submit();
}