function openLink(url) {
  window.open(url, '_blank', 'menubar=yes,resizable=yes,toolbar=yes,location=yes,scrollbars=yes,statusbar=yes');
} // openLink

$(function() {
	if ($('#comm-search-tips').hasClass('s'))
		$('#comm-search-tips .content').hide();
	
	$('#comm-search-tips a').click(function() {
		$('#comm-search-tips .content').slideToggle();
		return false;
	})
});
