// JavaScript Document
function syl_open(link)
{
	window.open(link ,'_blank','width=700,height=500,location=no,menubar=1,toolbar=0,titlebar=1,status=0,scrollbars=yes,resizable=no,top=50,left=150');
}
function chk_confirm()
{
	return window.confirm("Are You Sure to Delete?");
}
function goBack()
{
	window.history.back()
}
function tableShowHide(item) 
{
	obj = document.getElementById(item);
	visible = (obj.style.display != "none");
	if(visible){
		obj.style.display = "none";
	} else {
		obj.style.display = "block";
	}
}