// JavaScript Document
function show(id,fc){
	document.getElementById(id).style.display = '';	
	document.getElementById(fc).className = 'foucs1';
	//alert(fc);
}

function hid(id,fc){
	document.getElementById(id).style.display = 'none';	
	document.getElementById(fc).className = 'foucs2';
	//alert(fc);
}
