// JavaScript Functions for Strand Hanson
function extWin(url,width) {
	var winfeatures = 'width='+width+',height=700,resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes';
	window.open(url,'extwin',winfeatures);

}

function extWin2(url,width,height) {
	var winfeatures = 'width='+width+',height='+height+',resizable=yes,scrollbars=yes,menubar=yes,status=yes,toolbar=yes';
	window.open(url,'extwin',winfeatures);

}

function contactButtons()
{
	//debugger;
		var topTabs = document.getElementById('topTabs');
		if (topTabs != null)
		{
			if(location.pathname == "/" || location.pathname == "/default.aspx" || location.pathname == "/Default.aspx")
				topTabs.style.display = 'block';
			else
				topTabs.style.display = 'none';
		}
}
