﻿function Cover(bottom, top, ignoreSize) {
    var location = Sys.UI.DomElement.getLocation(bottom);
    top.style.position = 'absolute';
    top.style.top = location.y + 'px';
    top.style.left = location.x + 'px';
    if (!ignoreSize) {
        top.style.height = bottom.offsetHeight + 'px';
        top.style.width = bottom.offsetWidth + 'px';
    }
}

    function ProcessSendEmail()
    {
        myemail.ProcessEmail("wahyudi@rfcuny.org","wahyudi","test",onFailure);
    }
    
    function onFailure(){
        alert("failure");
    }

    function onEmailSuccess(){
        alert("Success");
        }