//////////////////////////////////////////////////
// 
//  Sample JavaScript Program - Counts to Ten
// 
//  Copyright 2005 Andrew Eichstaedt
//  Eichstaedt Development Group
//  http://www.andrew-eichstaedt.com
//
function sample_javascript_program()
{
    var message = ""
    var i

    message += "Hello! I am a sample javascript\r\n"
    message += "program that counts to ten.\r\n\r\n"

    for (i = 1; i <= 10; i++)
        message += i.toString() + "\r\n"

    message += "\r\nThanks for running me."
	
    alert(message)
}

