$J(document).ready(function(){
	$J('.help_link').each(function(){
		$J(this).click(function(e){
			e.preventDefault();
			openPopupWindow(this.href + '&js=true',"menubar=0,resizable=0,width=475,height=200");
			return false;
		});
	});
});