/**
 * Add by Raymond 2009-12-21
 *
 * Show and hide message area when link is being clicked
 *
 */

function showMsg(loc) { 
	
	document.getElementById(loc).style.display = (document.getElementById(loc).style.display == "block") ? "none" : "block"; 
}