﻿//var CallmeSiteURL = "http://localhost/callme";
var CallmeSiteURL = "http://www.callme.co.il";

document.write("<div id='CallmeDialerDiv' style='position:absolute;display:none;'><table style='width:371px;height:369px' background='" + CallmeSiteURL + "/images/d/dialer.jpg'><tr><td align='right'><img src='" + CallmeSiteURL + "/images/pixel.gif' width='25' onclick='CloseDiv()'></td></tr><tr><td><iframe id='CallmeIframe' frameborder='0' style='width:365px;height:335px'></iframe></td></tr></table></div>");

function OpenCallmeDialer(oCallMeUserName)
{
    var odiv=document.getElementById("CallmeDialerDiv");
    odiv.style.top = (((window.screen.height-370)/2)+window.document.body.scrollTop) +'px';
    odiv.style.left = (((window.screen.width-370)/2)+window.document.body.scrollLeft) +'px';
    odiv.style.display='';
    
    var ofrm=document.getElementById("CallmeIframe");
    ofrm.src = CallmeSiteURL + '/Dialer/CallBack.aspx?u=' + oCallMeUserName
}

function CloseDiv()
{
    var div=document.getElementById("CallmeDialerDiv");
    div.style.display='none';
}
