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