﻿function confirmAction(url) {
    if (confirm('Confirm action?')) {
        document.location.href = url;
    }
}

function styleLinks() {
    // external links
    jQuery('a[href^="http://"]').addClass('external');
    // image links
    jQuery('a[href$=".jpg"]').addClass('image');
    jQuery('a[href$=".png"]').addClass('image');
    jQuery('a[href$=".gif"]').addClass('image');
    // dpci,emt öomls
    jQuery('a[href$=".txt"]').addClass('document');
    jQuery('a[href$=".htm"]').addClass('document');
    jQuery('a[href$=".html"]').addClass('document');
    jQuery('a[href$=".doc"]').addClass('document');
    jQuery('a[href$=".docx"]').addClass('document');
    jQuery('a[href$=".pdf"]').addClass('document');
}
