// JavaScript Document
function show(id)
{
	document.getElementById(id).style.display = "";	
}
function hide(id)
{
	document.getElementById(id).style.display = "none";	
}
function setfocus(id)
{
	document.getElementById(id).focus();	
}