var win=window;
function OpenWin(url){
if ((win == window) || win.closed) {
win=window.open(url,"Wexplanation","width=650,height=620,scrollbars=yes,resizable=yes");
} else {
win.location.replace(url);
win.focus();
}
}
