﻿// 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 showWin(path)
{

    mywin = window.open (path,"view","location=0,status=0,scrollbars=0,width=800,height=600"); 
    mywin.focus();
}


