var userId = "";
var site_path = "http://rafed.net/calendar/";

function getTimes(){
    var tmobj = document.getElementById('times');
    var ifrm = document.createElement('iframe');
    ifrm.setAttribute('id', 'ifrm');
    ifrm.style.border = '0px';
    if(typeof(tmobj.style.width) != "undefined") ifrm.style.width = tmobj.style.width;
    if(typeof(tmobj.style.height) != "undefined") ifrm.style.height = tmobj.style.height;
    var url = site_path +"/ajservice.php?m=getTimes&userId="+ userId;
    ifrm.setAttribute('src', url);
    
    tmobj.appendChild(ifrm);
}
