

function formatInputValue( input, html )
{
    var value = $(input).val();
    if( !html ) {
        value = strip_tags( value );    
    }
    value = htmlentities( value );
    value = urlencode( value );
    return value;
}

function selectContent( element )
{
    $(element).select();
}

function openVideo( where, title, comment) {
    $.prettyPhoto.open( where, title, comment );
}