// makes pop up window disclaimer prior to allowing email link launching email client

 /*original client supplied function*/
function showEmailWindow(email)
{
	window.open("http://www.spencerfane.com/LifeSciences/emailPopup.htm?email=" + email, "EmailNotice", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=400,height=300");
}
/*
//original usage:
<a href="javascript:showEmailWindow('dkight@unionfreeworkplace.com');">dkight@unionfreeworkplace.com</a>

*/

/*(function($)
{
	//jquery version of above function
	$.fn.showEmailWindow = function()
	{
		return this.each(function(targetCounter)
		{
			var _$this = $(this);
			
			//get the href
			var myEmailAddress = _$this.attr('href');
			
			myEmailAddress = myEmailAddress.split(":");
			
			//store just the email address portion
			myEmailAddress = myEmailAddress[1];
			
			_$this.click(function()
			{
				//http://192.168.0.107/spencerfane/LifeSciences/emailPopup.htm?email=
				// !!! below absolute link needs to be changed when site goes live !!!
				//window.open("http://demo.rosedesign.com/spencerfane/LifeSciences/emailPopup.htm?email=" + myEmailAddress, "EmailNotice", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=400,height=300");
				window.open("http://www.spencerfane.com/lifesciences/emailPopup.htm?email=" + myEmailAddress, "EmailNotice", "toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,resizable=yes,width=400,height=300");
			});
		});
	};

})(jQuery);*/