/*	Developed By: Md. Mahmud Ahsan */
/*	cIB = Change Input Box . It changes the element's background color. */
/*	rIB = Restore Input Box . It restore the previos */

/*	<script type="text/javascript" language="javascript" src="{$LINK_JAVASCRIPT_DIR}/client/jform.js"/></script> */
/*  onmouseover="cIB(this);" onmouseout="rIB(this);" */

function cIB(x){
	x.style.backgroundColor = "C3D0F4";
}	
function rIB(x){
	x.style.backgroundColor = "FFFFFF";
}
