function pleaseWait(o) {
	o.value = "please wait...";
	o.style.color = "#001127";
}



function intFilter(objV,ordermin) {

	var val = "";
	var len = objV.value.length;

	//Remove all non-numeric

    	for(i=0;i<len;i++) {
		charatA = objV.value.charAt(i);
		charat0 = objV.value.charCodeAt(i);
        	if(charat0 >= 48 && charat0 <= 57) { val=val+charatA; }
	}
	
	if(val.length>0) { objV.value=val; } else { objV.value=[ordermin]; }
}

