function FillString(s,n,c){
	var r='';	
	
	s=s.toString();	
	for(var i=0;i<n-s.length;i++) r+=c;
	r+=s;
	return r;
}