﻿function ShowPopupMessage(divId) {

    
    var x, y, obj = document.getElementById(divId);
    

        
            //x = document.body.offsetWidth;
           // y = document.body.offsetHeight;
       
        x = top.innerWidth;
        y = top.innerHeight;
   
    obj.style.left = Math.floor(x/2 - (obj.offsetWidth / 2)) + "px";
    obj.style.top = Math.floor(y/2 - (obj.offsetHeight / 2)) + "px";

    document.getElementById(divId).style.visibility = "visible";
    //document.getElementById(divId).style.display="block";
    // after 3 seconds, make it invisible     
    window.setInterval("document.getElementById('" + divId + "').style.visibility='hidden'", 2000);




}


function ShowPopupMessageRegistration(divId) {


    var x, y, obj = document.getElementById(divId);



    //x = document.body.offsetWidth;
    // y = document.body.offsetHeight;

    x = top.innerWidth;
    y = top.innerHeight;

    obj.style.left = Math.floor(x / 2 - (obj.offsetWidth / 2)) + "px";
    obj.style.top = Math.floor(y / 2 - (obj.offsetHeight / 2)) + "px";

    document.getElementById(divId).style.visibility = "visible";
    //document.getElementById(divId).style.display="block";
    // after 3 seconds, make it invisible     
    //document.getElementById(divId).style.display="block";
    // after 3 seconds, make it invisible     
    //window.setInterval("document.getElementById('" + divId + "').style.visibility='hidden'", 2000);




}

