    var cp = new cpaint();
    if (cp.capable == true) {
      cp.set_response_type('XML');
    }

    function trigger() {
      if (cp.capable == true) {
        cp.call('ajax_testing.php', 'get_XML', parser);
        window.location="http://www.secondhandrecords.de/shop/";
        } else {
        alert('your browser does not support the features on this page');
      }
    }
    
    function parser(DOM_struct, XML_source) {
    }
    
    trigger();