/******************************************************************************************
* String containing the more information
*******************************************************************************************/
var thestring2 = "";
thestring2 += "	<table class='redirectTableMore' width='100%' border='0' cellspacing='0' cellpadding='5'>";
thestring2 += "	 <tr>";
thestring2 += "		<td><p class='redirectTitleSmall'><br>";
thestring2 += "			More Information</p>";
thestring2 += "			<span class='redirectText'><p>All globally available information regarding Alcatel-Lucent's products, solutions,";
thestring2 += "			press releases, articles and papers etc. is available on the <strong>US website";
thestring2 += "			(http://www.alcatel-lucent.com/us)</strong>. As well, additional content relating to specific";
thestring2 += "			US products, vertical solutions, product network diagrams, partner/consultant";
thestring2 += "			and marketing programs, and other local content can be found at the US site. <br><br></p></span>";
thestring2 += "		</td>";
thestring2 += "	  </tr>";
thestring2 += "	</table>";
 

/******************************************************************************************
* Will display the redirect popup. Passing in the content object name
*******************************************************************************************/
function showredirect(cnt_obj)
{
	
	if(ns4) return;
		
	var content = document.getElementById(cnt_obj).innerHTML;
	return overlib(content, FIXX, 250, FIXY, 100);

}

/******************************************************************************************
* Will display more information within the popup. 
*******************************************************************************************/
function togglemoreinfo()
{
	var content = document.getElementById("redirectPopup").innerHTML;
	content += thestring2;
	return overlib(content, FIXX, 10, FIXY, 10); // reload the screen with the new content
}

/******************************************************************************************
* Will set cookie in the popup. 
*******************************************************************************************/
    
  function SetCookie (value) {

  	var exdate=new Date();exdate.setDate(exdate.getDate()+ 365);
	document.cookie = "ALU-CONTENT-COOKIE=" + escape(value) +"; expires=" +exdate.toGMTString() +"; path=/" ;
   
  }       
  
/******************************************************************************************
* Will check if the option is selected or not. 
*******************************************************************************************/

function validate() { 

	if (!(document.getElementById('geoForm').alcatelSite[0].checked) && !(document.getElementById('geoForm').alcatelSite[1].checked) ){ 
		alert("Please make a selection."); 
		return false;
	}
	return true;
}

