function logDownload( e ) {
	var file = e ;
	var logURL = "log2.php?file=" + e ;
	var hiddenPage = document.getElementById( "loginfo" ) ;
	hiddenPage.src = logURL ;
	return ;
}

function adminSummary( e ) {
	var source = document.getElementById( e ).cloneNode(true) ;
	var target = document.getElementById( 'summaryContent' ) ;
	
	if( target.hasChildNodes() ){ 
		target.removeChild( target.firstChild ) ;
	}

	target.appendChild( source );
	source.style.visibility = 'visible' ;
	source.style.backgroundColor = '#ffffff' ;

	return ;
}

function adminHoverText( e ){
	if( e.className.indexOf('adminview') >= 0 ) {
		e.className = 'adminhover' ;
	} else {
		e.className = 'adminview' ;
	}
}
