function show(){
	document.getElementById("second").style.visibility="visible";
}

function hide(){
	document.getElementById("second").style.visibility="hidden";
}

function init(){
	document.getElementById("second").style.visibility="hidden";	
}