/*
	FOR THESE SCRIPTS TO RUN CORRECTLY, THE JQUERY LIBRARY, THE JQUERY UI LIBRARY, AND THE JQUERY.COOKIE.JS LIBRARY MUST ALL BE LOADED FIRST
*/

	//set environment
	var cookieName = "TBN_SEENSIGNUPTODAY";
	var cookieOptions = { path: '/', expires: 1}; //sets the cookie path and expiration to 1 day
	
	$(document).ready(function() {

		//if this is our first visit of the day, present a popup signup window
	
		
		if($.cookie(cookieName) != "true") {
			if(typeof siteURL == "undefined") siteURL = "http://www.benchmarkingnetwork.com";
			if(typeof siteAssociation == "undefined") siteAssociation = "The Benchmarking Network";
			if(typeof siteAssociationLongName == "undefined") siteAssociationLongName = "The Benchmarking Network";

			openSignUpPopUp();
		}
								
							
	});
	
	function openSignUpPopUp() {
		//set the cookie
		$.cookie(cookieName,'true',cookieOptions);
		
		container = $("<div id='popupBackground'>").css({
			'display':'none',
			'position':'absolute',
			'width':'100%',
			'height':'100%',
			'top':'0px',
			'left':'0px',
			'background-color':'#000000',
			'-moz-opacity':'.50',
			'filter':'alpha(opacity=50)',
			'opacity':'.5',
			'z-index': '1000'
		});
		//alert(container.html());
		content = $("<div id=\"popupContent\" style=\"width:400px; height:460px; border:1px solid #999999; background-color:#FFFFFF; -moz-border-radius: 8px; -webkit-border-radius: 8px; font-family:\'Myriad Pro\', Arial, Helvetica, sans-serif; font-size:10px; position:absolute; margin-left:50%; margin-top:50%; left:-200px; top:-230px; display:none;z-index:1001; padding:10px;\">").html("<h1 align='center' style='border-bottom: thin solid #666666'>Free Membership Opportunity</h1><p>Sign up now for a FREE membership in " + siteAssociationLongName + ".  Benefits of membership include:</p><ul><li>The opportunity to become involved in upcoming round table discussions</li><li>Information on sponsoring studies in your area of interest</li><li>The privilege of being invited into ongoing studies</li><li>The ability to participate in benchmarking surveys</li><li>A free subscription to the E-Benchmarking Newsletter</li></ul><p>Currently, membership is free and open to business professionals around the world.  Just click the 'sign up now' button to fill out an application, and we will begin the membership process immediately.</p><p align=\"center\"><table cell-padding=\"12\" cell-spacing=\"0\" border=\"0\" width=\"100%\"><tr><td align=\"center\"><a href=\"http://www.benchmarkingnetwork.com/signups/genericSignup.php?association=" + siteAssociation + "&siteURL=" + siteURL + "&longName=" + siteAssociationLongName + "\"><img src=\"http://www.benchmarkingnetwork.com/Images/signupButton.png\" / border=\"0\"></a></td><td align=\"center\">or</td><td align=\"center\"><a href=\"#\" onclick=\"closeSignUpPopUp()\"><img src=\"http://www.benchmarkingnetwork.com/Images/learnMoreButton.png\" / border=\"0\"></a></td></tr></table></p><p>This service is provided by The Benchmarking Network, Inc., an international resource for business process research and metrics. We lead studies with over 3,000 process leaders in over 25 countries. We provide benchmarking training and research to individual companies, professional and trade associations, and industry and process based groups. Since 1992, our over 300 benchmarking studies have spanned virtually all processes and industries to identify measures and collect data</p><p align=\"center\"><a href=\"#\" onclick=\"closeSignUpPopUp()\"><img src=\"http://www.benchmarkingnetwork.com/Images/noThanksButton.png\" / border=\"0\"></a>&nbsp;&nbsp;&nbsp;<a href=\"#\" onclick=\"closeSignUpPopUp()\"><img src=\"http://www.benchmarkingnetwork.com/Images/alreadyAMemberButton.png\" / border=\"0\"></a></p>");
		
		$("body").append(container);
		$("body").append(content);
		$("#popupBackground, #popupContent").fadeIn();	
	}
	function closeSignUpPopUp() {
		$("#popupBackground, #popupContent").fadeOut();	
	}