function showSomething(id)
{
	document.getElementById(id).style.display='block';
}
function hideSomething(id)
{
	document.getElementById(id).style.display='none';
}
function navActive(id)
{
	document.getElementById(id).setAttribute('class','active');
}
function navInactive(id)
{
	document.getElementById(id).setAttribute('class','');
}
function DoSearch()
{
	var txt = document.getElementById('header_keyword').value;
	if (txt != "Find By Keyword") {
		window.location = "http://www.acco.com/searchresults.aspx?q=" + txt;
	}
}
function openpopup(){
var popurl="choose.aspx"
winpops=window.open(popurl,"","width=650,height=460,scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no")
}