var status=0
function $(e){
	return document.getElementById(e)
}
function showhadv(x)
{
	var s;
	if(status==0)
		s="block"
	else
		s="none"
	status=!status;
	$('popup_search').style.display=s;
	return false;
}
