﻿//
$(document).ready(function() {
    $('#contentFrame').height($(window).height() - (59 + 25 + 10));
    $('#contentFrame').width($(window).width() - 270);
});

window.onresize = function() {
    $('#contentFrame').height($(window).height() - (59 + 25 + 10));
    $('#contentFrame').width($(window).width() - 270);
};


// Breadcrumb updates
function ClearBreadcrumb() {
    $('#breadcrumb #section').text('');
    $('#breadcrumb #datasheet').text('');
}

function UpdateBreadcrumb(value, sectionID, clientRingbinderID) {
    $('#breadcrumb #section').html(' <img src="/Content/Images/breadcrumbbullet.gif" alt="" style="vertical-align: middle" /> ' + value);
    $('#breadcrumb #datasheet').text('');
}

function UpdateParentBreadcrumb(value, sectionName, sectionID, clientRingbinderID) {
    parent.$('#breadcrumb #section').html(' <img src="/Content/Images/breadcrumbbullet.gif" alt="" style="vertical-align: middle" /> <a href="/DataSheetList.aspx?SectionID=' + sectionID + '&ClientRingbinderID=' + clientRingbinderID + '" target="contentFrame" onclick="UpdateBreadcrumb(\'' + sectionName + '\')" >' + sectionName + "</a>");
    parent.$('#breadcrumb #datasheet').html('&nbsp;&nbsp;<img src="/Content/Images/breadcrumbbullet.gif" alt="" style="vertical-align: middle" /> ' + value);
}