
function OpenComment(fp)	{

	window.open('/Comments/'+ fp,'comments','directories=0,height=450,width=400,location=0,resizable=1,statusbar=1,scrollbars=1,toolbar=0');

}


	var myrules = {
		
		'div.commentFooter' : function(element){
			element.onmouseover = function(){
				this.className = "commentFooterOver";
			}
			element.onmouseout = function(){
				this.className = "commentFooter";
			}
		}
				
	};
	
	Behaviour.register(myrules);

