/*	Date	            :	26/06/2003
	Author 	            :	Deepak Khopade
	Purpose	            :	When we roll over the mouse on command buttons, the style of that button is change.
              Linked File's        : btnStyles.css, and all Files which have command buttons.
	Procedures Names	:	No Any Procedure Call
	Trigger Names		:	No Any Database Update/Insert/Delete
*/

// This function is to change the styles of button 
// when mouse is over from it.
function jFun_Chng_Style_Over(inBt)
{
	// inBt is button name.
	inBt.style.backgroundImage = "url(images/btbk1r.gif)";
}


// This function is to change the styles of button 
// when mouse is out from it.
function jFun_Chng_Style_Out(inBt)
{
	// inBt is button name.
	inBt.style.backgroundImage="url(images/btbk1.gif)";
}
