function bookmark(title){
	var title = document.title;
	if(document.URL) 
		var url = document.URL;
	else if(document.location) 
		var url = document.location;
	else
		var url = location.href;

	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "")
	else if (window.sidebar&&window.sidebar.addPanel)
		window.sidebar.addPanel(title,url,"");
}
function JumpBottom () {
	window.scrollTo(0,100000);
}
function checkAll(theForm, cName, allNo_stat) {
	var n=theForm.elements.length;
	for (var x=0;x<n;x++){
		if (theForm.elements[x].className.indexOf(cName) !=-1){
			if (allNo_stat.checked) {
				theForm.elements[x].checked = true;
			} else {
				theForm.elements[x].checked = false;
			}
		}
	}
}