﻿// JScript File

function property()
{
    this.Name = "undefined name";
    this.Value = "undefined value";
    this.Alert = function ()
    {
     alert("Name: "+ this.Name +" Value: "+ this.Value);
    }
}