function on_click() {
    var cw = document.getElementById("output").contentWindow;
    var doc_type = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" \
                   "http://www.w3.org/TR/html4/loose.dtd">';
    var inner_html = doc_type + document.getElementById("input").value;
    if ($.browser.msie) { 
        cw.document.open( "text/html", "replace" );
    } else {
        cw.document.open();
    }
    cw.document.write(inner_html);
    cw.document.close();
}
$(document).ready( function() {
    $("#arrowbutton").mouseup(function(){
        //$('#apibuttonimg').attr('src', "../images/up_button.jpg");
        $('#apibuttonimg').attr('src', '../images/new_Up_button.jpg');
    }).mousedown(function(){
        //$('#apibuttonimg').attr('src', "../images/down_button.jpg");
        $('#apibuttonimg').attr('src', '../images/new_down_button.jpg');
    });
    $('#arrowbutton').click( function() { on_click(); });
});
/*$(window).bind('load', function() {
    window.setTimeout('on_click()', 0);
    var img = document.createElement('img');
    img.src = '../images/down_button.jpg';
});*/
$(window).bind('load', function() {
    window.setTimeout('on_click()', 10);
    var img = document.createElement('img');
    img.src = '../images/new_down_button.jpg';
});

