function toggleCommentForm() {
	if (document.getElementById("comment").style.display == 'block') {
		document.getElementById("comment").style.display = 'none' ;
	} else {
		document.getElementById("comment").style.display = 'block' ;
	}
}

function jumpDetail(i) {
	window.open("detail.php?id=" + i, "details", "scrollbars=1,status=0,toolbar=0,height=600,width=450,resizable=1") ;
}

function toggleMenu() {
	if (document.getElementById("mlinks").style.display == 'inline') {
		document.getElementById("mlinks").style.display = 'none' ;
	} else {
		document.getElementById("mlinks").style.display = 'inline' ;
	}
}

function keywordJump(kid) {
	window.opener.location.href = 'archive.php?kid=' + kid ;
}

function currimageJump(id) {
	window.opener.location.href = 'index.php?id=' + id ;
}
