// JavaScript Document

// threaded comments 
function DisplayCommentBox(id,pid,uid){
	// This shows or hidses the section
	var el = document.getElementById('if_AddComment');
	if ( el.style.display == "none" ) {
		el.style.display = '';
	}
	el.src = '/view/addcomment.asp?style=iframe&uid='+uid+'&pid='+pid+'&id='+id;            
} 

// End -->
