function init()
{
	if (statedropdown) { 
		statedropdown(search_form);	
	}
}

function popup(element)
{
	if (window.innerWidth) {
		width = window.innerWidth;
		height = window.innerHeight;
	} else if (document.body && document.body.clientWidth) {
		width = document.body.clientWidth;
		height = document.body.clientHeight;
	}
	element.style.left = (width - parseInt(element.style.width, 10))/2;
	element.style.top = (height - parseInt(element.style.height, 10))/2;	
	
	element.style.display = 'block';
	
	return false;
}