/* common functions
==============================================================================*/
$(document).ready(function() {
	$('a[@rel=providersearch]').click(function(e) {
		var href = this.href;
		if (href != null || href != "") {	
			var name = "aiz_providersearch_popup";
			var features = "width=900,height=710,";
			features += "directories=no,location=no,menubar=no,";
			features += "resizable=no,scrollbars=yes,status=yes,toolbar=no";
			var newWindow = window.open(href, name, features);
			newWindow.focus();
			e.preventDefault();
		}
	});
});