Popup = {};

Popup.getPopup = function(e,bottom) {
    Popup.positionPopup(e,bottom);
	Popup.showPopup();
}

Popup.positionPopup = function(e,bottom) {
	var evt = window.event || e;
	var top  = document.body.scrollTop;
	if(top == null || top == 0){
		top = document.documentElement.scrollTop ;
	}
	if(navigator.vendor!= null && navigator.vendor.toLowerCase().indexOf('apple') > -1){
		top = 0;
	}
    if (bottom) {
        document.getElementById('emailposition').style.top = ( evt.clientY + top - 400 ) + "px";
    } else {
        document.getElementById('emailposition').style.top = evt.clientY + top + "px";
    }
    document.getElementById('emailposition').style.left = evt.clientX + "px";

}

Popup.showPopup = function() {
	document.getElementById('emailposition').style.display='block';
}


Popup.closePopup = function() {
	document.getElementById('emailposition').style.display='none';
}