function showDiv(id) {
	if (document.layers) document.layers[''+id+''].visibility = "show"
	else if (document.all) document.all[''+id+''].style.visibility = "visible"
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"

}

function hideDiv(id) {
	if (document.layers) document.layers[''+id+''].visibility = "hide"
	else if (document.all) document.all[''+id+''].style.visibility = "hidden"
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}

function newwindow(x){
	thewindow = window.open(x,'nowzen','width=770,height=500,top=10,left=10,menubar=no,toolbar=no,location=no,scrollbars=yes,status=no,resizable=yes')
	thewindow.focus()
}

function clickbutton(x) {
	document.initialize.thispage.value = x
	document.initialize.submit()
}
