// JavaScript Document

function clearFormField(fTarget){
	fTarget.value="";
}

function fillFormField(fTarget,fValue){
	fTarget.value = fValue;
}

function initSite(){
	//THE RELATED LINKS HAS TO BE PLACED AT THE BOTTOM OF THE ARTICLE BY DESIGN.
	//GET THE ARTICLES HEIGHT AND CALCULATE HOW TALL pagebody_shortcutpane_shortbio 
	//HAS TO BE IN ORDER TO PUSH pagebody_shortcutpane_related AND pagebody_shortcutpane_box DOWN IN ALIGNMENT
	if(document.getElementById("pagebody_article") != null){
		var pagebody_articleHeight = document.getElementById("pagebody_article").offsetHeight;
		var pagebody_shortcutpane_shortbioObj = document.getElementById("pagebody_shortcutpane_shortbio");
		pagebody_shortcutpane_shortbioObj.style.height = pagebody_articleHeight - 684 + "px";
	}
}