
/**
 * dynSilverlightOverlay
 * Interface function for Colorbox plugin called within Silverlight files to launch an overlay.
 * @param {string} url  Any valid URL.
 * @requires jQuery 1.3.2 +
 * @requires jQuery Colorbox plugin
 */
var dynSilverlightOverlay = function(url){
	if (!url || typeof url != 'string' || typeof jQuery != 'function' || typeof jQuery.fn.colorbox != 'function') { return false; }
	jQuery.fn.colorbox({
		href: url, 
		fixedWidth: '85%', 
		fixedHeight: '94%', 
		iframe: true,
		open: true
	});
}