/**
 * @author Sigurdsson
 */
function toggleVisibility( listID )
{
	var list = document.getElementById(listID);
	if (list.style.display == 'none')
	{
		list.style.display = '';
	}
	else
	{
		list.style.display = 'none';
	}
	
}

function hideElement( listID )
{
	var list = document.getElementById(listID);
		list.style.display = 'none';
	
}

function clearSearchBox() { 
	document.search.searchtext.value = ''; 
}
	
function populateSearchBox() {
	if (document.search.searchtext.value.length == 0)
	{ document.search.searchtext.value = 'search your term'; }
}

function openPage(what,height, width) {
	var cust;
	var lwidth=(screen.Width-width)/2;
	var theight=(screen.Height-height)/2;
	
	cust = "toolbar=no,scrollbars=yes,width=" + width + ",height=" + height + ", left ="+lwidth+",top = "+theight+",resizable=yes";
	msgPage=window.open(what,"displayWindow",cust);
	msgPage.focus()
}


function openFeedback(url) {
	window.open(url, '', 'height=800,width=700,status=no,menubar=no,scrollbars=yes,toolbar=no', '');
}