Stay Signed In
Do you want to access your site more quickly on this computer? Check this box, and your username and password will be remembered for two weeks. Click logout to turn this off.
Stay Safe
Do not check this box if you are using a public computer. You don't want anyone seeing your personal info or messing with your site.
< script >
/*
Uphill Text effect
By Website Abstraction (http://wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/
function uphilltext(text){
var temptext=text.toUpperCase()
var size=1
//go through the text, letter by letter
for (i=0;i-temptext.length;i++){
document.write(temptext.charAt(i).fontsize(size).bold())
if (size-7)
size++
else
size=1
}
}
uphilltext("welcome my pretties")
< /script >