$(document).ready(function(){
    $('input[type=text]').first().select();
});
function getsize(Form){
    File = Form.flashinput.value;
    Width = Form.widthinput.value;
    Height = Form.heightinput.value;
    $('#flash_embed').slideUp(function(){
        HTML  = '<span>';
        HTML += '<p>Flash embed code based on <a href="http://www.alistapart.com/articles/flashsatay">this article</a>.</p>';
        HTML += '<pre style="overflow:auto;padding:10px 5px;background:#f5f5f5;">';
        HTML += '&lt;object type="application/x-shockwave-flash" data="' + File + '" width="' + Width + '" height="' + Height + '"&gt;';
        HTML += '\n\t';
        HTML += '&lt;param name="movie" value="' + File + '"/&gt;'
        HTML += '\n\t';
        HTML += '&lt;param name="wmode" value="transparent"/&gt;';
        HTML += '\n';
        HTML += '&lt;/object&gt;';
        HTML += '</pre>';
        HTML += '</span>';
        $('#flash_embed').html(HTML);
        $('#flash_embed').slideDown();
    });
    return false;
}
