// Show/Hide Table element
function showHide(targetName) {
		if( document.getElementById ) { // NS6+
				target = document.getElementById(targetName);
		} else if( document.all ) { // IE4+
				target = document.all[targetName];
		}
		if( target ) {
				if( target.style.display == "none" ) {
						target.style.display = "inline";
				} else {
						target.style.display = "none";
				}
		}
} 


function AddArticleLink(EditorName,ItemId) {
	var MyText = eval("'"+ItemId.options[ItemId.selectedIndex].value+"'");
	FCKeditorAPI.GetInstance(EditorName).InsertHtml(MyText);
	//alert( MyText ) ;
} 

<!--
function buttonlink(where) {
	document.location = where
}
//-->

<!--
function setfocus() {
	document.Logon.UserName.focus() 
}
//-->

							

