﻿function openWin(url, name, features) {
    window.open(url, name, features);
}

function closeWin() {
    window.close();
}