Just a quicky....for some reason I can't for the life of me remember the string function to display x amount of a certain character...it works like this, this would return 'c' 10 times:
Keyword("c", 10)
Someone please put me out of my misery, I know it is simple 
I think you want:
String() - Creates a repeated character string
Language: VBScript
Description
The String() function creates a string of optional length filled with the specified character.
String(length, character)
Example
MyString = String(3, "T") 'returns "TTT"
MyString = String(5, "?") 'returns "

??"