// for ACP JOB portal
function changeIdValue(Id,Value){
	var obj=document.getElementById(Id);
	obj.value=Value;
}
// image size control for UBB
function ubb_img_resize(imgobj,size){
    if ( imgobj.width > size ){
		imgobj.style.width=size+'px';
	}	
}