var __emailAddress 	= "";

function setEmailAddress( email ) {
	__emailAddress = email;
}

function getEmailAddress(){
	return __emailAddress;	
}


function getSource() {

	if(typeof __source != "undefined"){
	return __source;
	}
}

function showLNSurvey() {
	window.open( "/cms/fun/promo_content/home/ln_surveys/leadnurturing_surveyA.html", "lnSurvey", "height=480,width=770");
}								

function getObj(id) {
   var object = null;
   if( document.layers ) {   
		object = document.layers[id];
   } else if( document.all ) {
		object = document.all[id];
   } else if( document.getElementById ) {
		object = document.getElementById(id);
   }
   return object;
}

function getCookie(c_name)
{
  	if (document.cookie.length>0)
	{
		var c_start=document.cookie.indexOf(c_name + "=");
		if (c_start!=-1)
		{
		   	c_start=c_start + c_name.length+1;
		   	var c_end=document.cookie.indexOf(";",c_start);
		   	if (c_end==-1) c_end=document.cookie.length;
		  	return unescape(document.cookie.substring(c_start,c_end));
		}
  	}
	return "";
}
