/**
 * @author joaquin santos, 2008
 */
// JavaScript Document
qrlink = {
    init: function() {
        // set button action
        var btn = document.getElementById("button");
        btn.onclick = this.qrencode;
    },
    qrencode: function() {
        var txt = document.getElementById("qrtext");
        window.location.href= "/code/"+escape(txt.value);
    }
}


