<!--
function OnChange(dropdown,url)
{
	var myindex = dropdown.selectedIndex
    var baseURL= url
    top.location.href = baseURL + dropdown.options[myindex].value;
    
    return true;
}

function wopen(url, name, w, h)
{
  // Fudge factors for window decoration space.
  w += 32;
  h += 96;
  wleft = (screen.width - w) / 2;
  wtop = (screen.height - h) / 2;
  var win = window.open(url,
    name,
    'width=' + w + ', height=' + h + ', ' +
    'left=' + wleft + ', top=' + wtop + ', ' +
    'location=no, menubar=no, ' +
    'status=no, toolbar=no, scrollbars=no, resizable=no');
  // Just in case width and height are ignored
  win.resizeTo(w, h);
  // Just in case left and top are ignored
  win.moveTo(wleft, wtop);
  win.focus();
}


 function getElement(id){
 	var doc
	var browser=navigator.appName
	if (browser=="Netscape"){
		doc=document.getElementById(id);
	}else if(browser=="Microsoft Internet Explorer"){
		if(document.getElementsByTagName("div").item(id)){
			doc=document.getElementsByTagName("div").item(id);
		}else{
			doc=document.getElementById(id);
		}

	}else{
		doc=document.getElementById(id);
	}
	return doc

}

/* Toggle effect in Contact Us page using prototype and scripacoulous */

function toggleAddr(id){

	Effect.toggle(id,'slide');
}


	function ajax_team(id)	{
		var url = 'ajax_team.php';
		var pars = 'id='+id;
		var myAjax = new Ajax.Updater(
			'team', 
			url, 
			{
				method: 'get', 
				parameters: pars
			});
		
	}



//-->