function FastCallService(spell)
   {
      var param = { 'LongStick' : document.location.href};		    		
      OpenWindowWithPost("http://fastcall.gr/FCService/callme.php?bc="+spell, "width=465,height=440,scrollbars=no,toolbar=no,location=no,status=no,resizable=no,screenX=136,screenY=83",  "NewFile", param);		
   }

function OpenWindowWithPost(url, windowoption, name, params)
   {
            var form = document.createElement("form");
            form.setAttribute("method", "post");
            form.setAttribute("action", url);
            form.setAttribute("target", name);
 
            for (var i in params) {
                if (params.hasOwnProperty(i)) {
                    var input = document.createElement('input');
                    input.type = 'hidden';
                    input.name = i;
                    input.value = params[i];
                    form.appendChild(input);
                }
            }
            document.body.appendChild(form);
            window.open("http://fastcall.gr/FCSercive/callme.php", name, windowoption);
            form.submit();
            document.body.removeChild(form);
    }
