/*************************************************************************
 * CALS PPI:
 * EjPCHCommon.js V1.0 L01
 *
 * [ύX] 
 * V01L01 2003/12/05 Initial 
 * 
 * @version (V01L01)(2003/12/05) 
 * @author (JS)
 ************************************************************************/
function movePage(id, process, category) {
	var form = document.frm ;

	form.ejParameterID.value = id ;
	if ( process ) form.ejProcessName.value = process ;
	if ( category ) form.ejCategoryName.value = category ;
	form.submit() ;
}


function paddingZero(widget, num) {
	var v1 = widget.value ;
	while ( v1.length < num ) {
		v1 = "0" + v1 ;
	}
	widget.value = v1 ;
}

