// JavaScript Document

function clsWin(){
    window.opener = window;
    var win = window.open(location.href,"_self");
    win.close();
}

