
function resetField( field, resetText )
{
    if ( field.value == resetText ) field.value = '';
}

function handleFrontpageLightbox( onlyOnce )
{
    if ( onlyOnce )
    {
        if ( jQuery.cookie('FrontpagePopupWasShown' ) == '1' ) return;

        jQuery.cookie('FrontpagePopupWasShown', '1', { expires: 365 });
    }

    jQuery("#frontpage-lightbox" ).dialog({
        modal: true,
        autoOpen: true,
        draggable: false,
        resizable: false,
        width: 625
    });
}

