
jQuery(document).ready(function() {
	$('div.newsStories').find('div.full').hide().end().find('span.expand').click(function() {
	           $(this).parent(this).parent('div.part').hide().end();
			   $(this).parent(this).parent('div.part').next(0).slideToggle().end();
		  });
	$('div.newsStories').find('div.full').hide().end().find('span.collapse').click(function() {
			   $(this).parent(this).parent('div.full').hide().end();
			   $(this).parent(this).parent('div.full').prev(0).slideDown().end();
		  });
 });
function launchHelp(helpKeyName) {
	var myWin = window.open('admin?action=help&helpKeyName='+helpKeyName,'help','top=0,left=0,width=300,height=150,scrollbars=yes,scrolling=yes,toolbars=no,status=no');

	myWin.focus();
}

function launchWindow(strUrl,winName,features) {
    var myWin = window.open(strUrl,winName,features);
    myWin.focus();
}
