﻿function showValidationSummary()
{
	var summary = $('<div></div>').append($('.sat_validationSummary'));
	var summary_ohtml = summary.html();
	summary.find('.sat_validationSummary').remove();
    $.satFlyout("Please check the register form", summary_ohtml, true, applicationPath);
}

$(window).resize(function(){
	$('.leftside input').each(function(){
		var jElem = $(this);
		if (jElem.tooltip().get() != null)
		{
			jElem.tooltip().reposition();
		}
	});
});

