// JavaScript Document
 function dispJob(n)
{
	//alert(n);
	document.getElementById("ShowDiv"+n).style.display='inline';
}

 function dispHide(n)
{
	//alert(n);
	document.getElementById("ShowDiv"+n).style.display='none';
}
