﻿(function indicatorpopup() {
    $(document).ready(function() {
        $('a.metadataPopUp').click(function() {
            var features = "height=500,width=400,scrollTo,resizable=1,scrollbars=1,location=0";
            newwindow = window.open(this.href, 'Popup', features);
            return false;
        });
    });
} ());

(function icd10popup() {
    $(document).ready(function() {
        $('a.icd10PopUp').click(function() {
            var features = "height=400,width=400,scrollTo,resizable=1,scrollbars=1,location=0";
            newwindow = window.open(this.href, 'Popup', features);
            return false;
        });
    });
} ());

/*Create tabs*/
$(document).ready(function() {
    $("#tabs").tabs();
});



