// This script is used to selectively print the various Profile Tabs on the 
// BecpProfile.aspx page. It depends on the Prototype.js library.

function printProfile()
{
	var newWindow = window.open('Print.aspx', null, 'width=300,height=60,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,location=no');
}

// When using a custom JavaScript library with the ASP.NET AJAX Script Manager
// we must call notifyScriptLoaded() at the end of the file so the ScriptManager
// knows when the library is done loading.
if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();