function OpenMovie3() { 
       window.open ("http://www.powerpointsermons.com/video_motiondemo.php", "whytosignup", 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizeable=no, scrollbars=no, width=750, height=500');
                    
}
function OpenMovie4() { 
       window.open ("http://www.powerpointsermons.com/video_motionsignup.php", "whytosignup", 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizeable=no, scrollbars=no, width=750, height=425');
                    
}


function OpenFeedback() { 
       window.open ("http://www.powerpointsermons.com/?page=feedback", "feedback", 'toolbar=no, directories=no, location=no, status=no, menubar=no, resizeable=no, scrollbars=no, width=540, height=500');
                    
}



          var mousecoords = new Array(0,0);

          function searchsubmit(e) {
            if (document.forms.search.other.value == 'Start Searching')
              document.forms.search.other.value = '';

            if (e)
              if (e.keyCode && (e.keyCode == 13 || e.keyCode == 14))
                document.forms.search.submit();
          }

          function mousemover(e) {
            if (_moz) {
              mousecoords[0] = e.clientX;
              mousecoords[1] = e.clientY;
            }
            else if (_ie) {
              mousecoords[0] = e.clientX;
              mousecoords[1] = e.clientY;
            }
          }

          function mouseclicker(e) {
            for (a = 0; a < hidables.length; a++) {
              if (hidables[a].alwayshide)
                hidables[a].hide();
            }
            if (document.all && (e.button == 2 || e.button == 3)) {
              return false;
            }
            else if (e.which && e.which == 3) {
              return false;
            }
            return true;
          }
  
var HTTP = {};            
            
HTTP._factories = [
    function() {return new XMLHttpRequest(); },
    function() {return new ActiveObject("Msxml2.XMLHTTP"); },
    function() {return new ActiveObject("Microsoft.XMLHTTP"); }
    ];
            
HTTP._factory = null;
            
HTTP.newRequest = function() {
    if (HTTP._factory != null) return HTTP._factory();
                
    for (var i=0; i < HTTP._factories.length; i++) {
        try {
            var factory = HTTP._factories[i];
            var request = factory();
                        
            if (request != null) {
                HTTP._factory = factory;
                return request;
            }
        }
        catch(e) {
            continue;
        }
    }
    HTTP._factory = function() {
        throw new Error("PowerPointSermons uses ActiveX and JavaScript to provide you Web 2.0 Functions - Please enable your Javascript/ActiveX controls.");
    }
    HTTP._factory();
}
 