﻿// JScript File
function ClearContents(field, text)
{   
    if(field.value ==  text)
        field.innerText = "";
}

function RestoreContents(field,text)
{
    if(field.value == '') {
        field.innerText = text;
    }
}

function checkStatus()
{
    window.opener = "x";

}
