function closexy() {
var ua = navigator.userAgent;
if (navigator.userAgent.indexOf("MicroMessenger") != -1) {
if (ua.substring(ua.indexOf("MicroMessenger/") + 15, ua.indexOf("MicroMessenger/") + 16) >= 5) {
window.history.back();
}
} else {
window.close();
}
}