﻿// JScript File
function show(id,x,y,tf) {
    if (tf == true) {
    id.style.display = "block"
    id.style.left = x + "px"
    id.style.top = y + "px"
    }
    if (tf == false) {
    id.style.display = "none"
    }
}

function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }




