//Create by yanfei
function Show(ID) 
{
	if (document.all(ID).style.display == "none") 
	{
		document.all(ID).style.display = "";
		document.all(ID+'Ico').src= "images/ico_max.gif";
	} 
	else 
	{
		document.all(ID).style.display = "none";
		document.all(ID+'Ico').src= "images/ico_min.gif";
	}
}

function openwin() 
{
	window.open("other/error.jsp", "newwindow", "height=100, width=420, resizable=no, menubar=no, status=no, toolbar=no");
}

function goBack() 
{
	window.history.back();
}