﻿function scale() {
    //alert(window.screen.availHeight);
    div = $get("div_mask");
    //alert(window.screen.availHeight);
    div.style.width = window.screen.availWidth + "px";
    div.style.height = window.screen.availHeight + "px";
}

function Send(frommail, fromname, tomail, toname, word, style, frame) {
    alert("call Send");
    B_Tops.MailService.SendMail(frommail, fromname, tomail, toname, word, style, frame, onSended);
}

function test() {
    B_Tops.Services.test.HelloWorld(onSended);
}

function onSended(result) {
    //scale()
    div = $get("div_mask");
    div.style.display = "";
     
    //div_face = $get("div_face");
    //div_face.style.display = "";
}

function hide() {
    alert("call hide()")
    div = $get("div_mask");
    div.style.display = "none";
}