function go_country(){
	var dd = document.forms["frmCountries"].countryDLL;
	var thehref = dd.options[dd.selectedIndex].value;
	dd.selectedIndex = 0;
	window.location.href = thehref;
	return (false);
}
function checkSearch(){
	var srch = document.getElementById( "sp-q" );
	var sstr = srch.value;
	if (sstr=="") {
		return (false);
	} else {
		sstr = escape(sstr.replace("&"," "));
		srch.value = sstr;
		return (true);
	}
}
function printPreview(){
	/*var locn = window.location.pathname;
	var qs = window.location.search;
	if (qs != "") {
		locn = locn + qs;
	}
	window.open("/servlet/pwcPrintPreview?LNLoc=" + locn);*/
	window.print();
	return (true);
}
var aRVP  = new Array();
var sRVPBoxTitle =  '<span class="RVPTitle">Recently Visited Pages</span>';
var sRVPCookieText = '<div class="RVPOffMessage">Please enable cookies on your browser to activate this functionality.</div><ul><li><a href="http://www.pwc.com/gx/eng/main/privacy/index.html" target="_self" title="Privacy">Privacy</a></li></ul>';
document.cookie = "PwC=PwC; path=/";
var cookieenabled = (document.cookie.indexOf("PwC=") != -1) ? true : false
//checks if current page needs to be recorded in the cookie
function processRVP()
{
     var pos;
  
  // checks if cookies are enabled
  if (!(cookieenabled)) {return;}
 
 //read cookie and load global array
  readRVPCookie();
   
   //check for the indicator to record this url
   // 0 = not to record; any value = record
   if (readMetaTag("RVPFlag") == "0")  return; 
  
   // check for # sign followed by any
       var tUrl = document.location.href;
       if (tUrl.indexOf('#') != -1) {tUrl = tUrl.substring(0,tUrl.indexOf('#')); }
        
   if (!(recentRVP(tUrl)))
   {
     
       // get link description
      var sRVPTitle = readMetaTag("RVPTitle");
      if (sRVPTitle == "") 
      {  
          //get title from <title> tag
         sRVPTitle = document.title;
          if (typeof sRVPTitle != "undefined")
          {
	             // searches for something like "..& PricewaterhouseCoopers:!## Test "
	             var mt = new RegExp(/^([^a-zA-Z0-9]*)PricewaterhouseCoopers([^a-zA-Z0-9]*)\s/i);
	             sRVPTitle = sRVPTitle.replace(mt,"");
           }
          else {sRVPTitle = "";}
      }
         
      //record values in the cookie 
     if ((sRVPTitle != "") && (typeof sRVPTitle != "undefined") && (sRVPTitle != "undefined"))
     { 
       var pageInfo = escape(tUrl) + "~~" + escape(sRVPTitle) + "~~_self~~0~~~" ;
        recordRVP(pageInfo);
       //repoopulate global array
       readRVPCookie();
     }
  
    }
 
}
  
// record in the cookie as requested
function processbyreqRVP(title,url,target)
{  
   // checks if cookies are enabled
   if (!(cookieenabled)) {return;}
  
   // checks if title and url are provided
   if ((title == "") || (url == "")) {return;}
  
   // check for # sign followed by any
       var tUrl = url;
       if (tUrl.indexOf('#') != -1) {tUrl = tUrl.substring(0,tUrl.indexOf('#')); }
        
   if (!(recentRVP(tUrl)))
   { 
     //record values in the cookie 
      if  ( (!(target)) || (target == '')) var pageInfo = escape(tUrl) + "~~" + escape(title) + "~~_blank~~1~~~" ;
      else var pageInfo = escape(tUrl) + "~~" + escape(title) + "~~" + target + "~~1~~~" ;
      recordRVP(pageInfo);
    
    //repoopulate global array
    readRVPCookie();
   }
   
 }
// record URL as most RVP in the cookie
function recordRVP(pageInfo)
{
   // checks if cookies are enabled
   if (!(cookieenabled)) {return;}
 
   var cookieSTR =  "RVPLinks=" + pageInfo;
   for (var i=0; i < aRVP.length; i++)
    { 
        if ((aRVP[i]) && (aRVP[i]  != "")) cookieSTR =  cookieSTR + aRVP[i] + "~~~";
        if (i >= 4) break; 
     }
  
   document.cookie = cookieSTR + ";path=/";
 }
// checks if URL is recorded as the most recent RVP
function recentRVP(url)
{
if ( (!(aRVP[0])) || (aRVP[0] == "") ) {return false;}
//checks first entry
var tRVP = aRVP[0].split("~~");
if (tRVP[0] == escape(url)) {return true;}
           
return false;
 }
// populate links for RVP box using cookie
function displayRVP()
{
   
 // checks if cookies are enabled and display appropriate message if cookies are disabled
 if (!(cookieenabled)) 
  {
document.write('<div class="RVPBox">' + sRVPBoxTitle + '<br/>' + sRVPCookieText + '</div>');
return;
   }
   
 //display  links
    var parmArray = new Array();
    var hdr = 0;
    var j = 0;
    var urlStr;
    var tUrl;
   
    //display cookie contents
    if ((aRVP[0]) && (aRVP[0] != "") )
    {
       for (var i=0; i < aRVP.length; i++)
      {  
         if (aRVP[i])
        { 
            parmArray = aRVP[i].split("~~");
            if (i == 0) {
		           // check for # sign followed by any
		           tUrl = document.location.href;
		           if (tUrl.indexOf('#') != -1) {tUrl = tUrl.substring(0,tUrl.indexOf('#')); }
            }
            if ( (parmArray[1]) && (parmArray[0]) && ( (i > 0) || ( (i == 0)  && (!recentRVP(tUrl))) ))
            {
                // write header
                if (hdr == 0) {hdr = 1; document.write('<div class="RVPBox">' + sRVPBoxTitle + '<ul>');}
        
	         urlStr = '<li><a href="' + unescape(parmArray[0]) + '"';
	                
		         // window target
		         if ((parmArray[2]) && (parmArray[2] != 0))   {urlStr = urlStr + ' target="' + parmArray[2]  + '"';}
		          
		        //check to see if this needs to be tagged to record in RVP
		        if ((parmArray[3]) && (parmArray[3] == 1))  
		              {urlStr = urlStr + ' onClick="processbyreqRVP(\'' + unescape(parmArray[1]) + '\',\'' + unescape(parmArray[0]) + '\',\'' + parmArray[2] + '\');"';}
		        tUrl = unescape(parmArray[1]).replace("<","&lt;");
                      tUrl = tUrl.replace(">",">");
		        urlStr = urlStr + ' title="' + unescape(parmArray[1]) + '">' + tUrl +  '</a></li>';
		        document.write(urlStr);
		              
                 j = j + 1;
             }
             if (j >= 5) break;
          }
        }  //  end of for loop
if (hdr == 1) {document.write('</ul></div>');}
     }  
 
 }
// read cookie contents
function readRVPCookie()
{
var lnkStr = document.cookie;
var pos = lnkStr.indexOf("RVPLinks=");
if (pos == -1) return; 
// eliminate the text "PwC=PwC;RVPLinks=" from the string
lnkStr = lnkStr.substring(pos+9);
if (lnkStr.indexOf(";") > -1) {lnkStr = lnkStr.substring(0,lnkStr.indexOf(";"));}
//load  links in global array
aRVP = lnkStr.split("~~~");
}
// read meta tag for value
function readMetaTag(tagName)
{
  
  var content = "";
   
  // check for various browsers and versions  
 
  if (document.getElementById)   {  
        if (document.getElementById(tagName))  content = document.getElementById(tagName).content; 
     }
 else if (document.all) { 
        if (document.all[tagName])  content = document.all[tagName].content; 
     }  
 else if (document.layers) { 
        if (document.layers[tagName])  content = document.layers[tagName].content; 
     }
  
  return content;
  
}
processRVP();
//link vars
lpn_Key = ['@cm-cif@','@cm-c@','@cm-l@','@cm-pt@','@cm-i@','@cm-ch@'];
lpn_Value = ['cu','lu','eng','','',''];
ssl = '';
var domain='';
var domain_imagessl='';
// These are the page configuration parameters
var topNavVersion='std2';
var sections=['2'];
var lang = 'eng';
var languageIdentifiers=['eng'];
var languageNames=['English'];
var languageURLs=['/lu/eng/main/home/index.html'];
var section='2';
var country='lu';
var configVal = 0;
var css = 'wheat';
var hideTopNav = 0;
if ( ( configVal - 128 ) >= 0 ){
   var hideTopNav = 1;
   configVal -= 128;
}
var hideTabMenu = 0;
if ( ( configVal - 64 ) >= 0 ){
   hideTabMenu = 1;
   configVal -= 64;
}
var hideSearchBox = 0;
if ( ( configVal - 32 ) >= 0 ){
   hideSearchBox = 1;
   configVal -= 32;
}
var hideCountryBox = 0;
if ( ( configVal - 16 ) >= 0 ){
   hideCountryBox = 1;
   configVal -= 16;
}
var hideLPN = 0;
if ( ( configVal - 8 ) >= 0 ){
   hideLPN = 1;
   configVal -= 8;
}
var hideLang = 0;
if ( ( configVal - 4 ) >= 0 ){
   hideLang = 1;
   configVal -= 4;
}
var hideGHPLink = 0;
if ( ( configVal - 2 ) >= 0 ){
   hideGHPLink = 1;
   configVal -= 2;
}
var hidePwCLogo = 0;
if ( configVal == 1 ){
   hidePwCLogo = 1;
}
//This processes LPN URLs
function lpnLink( url ){
	if( url == null ){
		return( "" );
	}
	if( url == "" ){
		return( "" );
	}
	urlTxt = new String( url );
	for( i = 0; i <= lpn_Key.length-1; i++ ){
		if( lpn_Key[ i ] == urlTxt ) {
			urlTxt = lpn_Value[ i ];
			break;
		}
		splitUrl = urlTxt.split( lpn_Key[ i ] );
		urlTxt = splitUrl.join( lpn_Value[ i ] );
	}
	return( urlTxt );
}
//This processes URLs
function link( url ){
	if( url == null ){
		return( "" );
	}
	if( url == "" ){
		return( "" );
	}
	if( domain =="" ){
		return( url );
	}
	if( url.charAt( 0 ) == "/" ){
		return( domain + url );
	}
	return( url );
}
// This function generates the language list in the topNav section of the document.
// If there is only 1 language it is not displayed.
function generateLanguageList(){
	var langClass = '';
	if( languageIdentifiers.length > 1 ){
		for(i = 0;  i < languageIdentifiers.length;  i++ ){
			if ( languageIdentifiers[ i ] == lang ){
				langClass = "class = 'languageLinkSelected' ";
			}
			else {
				langClass =  "class = 'languageLink' ";
			}
			if ( i == 0 ){
				langClass += "id = 'firstLanguageLink' ";
			}
			document.writeln( "<span " + langClass + "><a href='" + link( languageURLs[ i ] )  + "' target='_self' title='" + languageNames[ i ] + "' hreflang='" + languageIdentifiers[ i ] + "'>" + languageNames[ i ] + "</a></span>");
		}
	}
}
function pageTools(){
	document.writeln( "<div class='pageTools'>" );
	pageToolsPrinterFriendly();
	pageToolsEmailPage();
	document.writeln( "</div>" );
}
function pageToolsPrinterFriendly(){
	tmpStr = "Print-friendly version";	
	document.writeln( "<a accesskey='5' href='#' onclick='printPreview()' target='_self' title='" + tmpStr + "'><img src='" + domain_imagessl + "/alumni/images/icon_printer.gif' border='0' alt='' hspace='5' vspace='7' />" + tmpStr + "</a><br />" );
}
function pageToolsEmailPage(){
	tmpStr = "E-mail to a colleague";
	var emailpageParam = "\""+country+"\",\""+lang+"\",\""+css+"\",\""+sections+"\"";
	document.writeln( "<a href='#' onclick='emailpage(" + emailpageParam + ")' target='_self' title='" + tmpStr + "'><img src='" + domain_imagessl + "/alumni/images/icon_email.gif' border='0' alt='' hspace='5' vspace='0' />" + tmpStr + "</a><br />" );
}
function tabMenuEndBar(){
	document.writeln( "<div class='DropdownBorder'></div>");
}
function tabMenu(){
	if (hideTabMenu==1){ return("") }
	document.writeln( "<!-- START HEADER B2 -->" );
	document.writeln( "<div class='DropdownContainer'>" );
	document.writeln( "<div class='Dropdowns'>" );
	document.writeln( "<table cellpadding='0' cellspacing='0' border='0' style='width: 770px'>" );
	//document.writeln( "<table cellpadding='0' cellspacing='0' border='0' style='width: 570px'> <!-- Homepage width changed from width of 770 -->" );
	document.writeln( "<tr>" );
	document.writeln( "<td class='PrimaryNavGrey'>&nbsp;</td>" );
	document.writeln( "<td class='PrimaryNavSpace'>&nbsp;</td>" );
//1st tab menu
	if (section == "1" ){
		document.writeln( "<td class='DropdownSelected'> <!-- Selected dropdown item required the 'DropdownSelected' class instead of 'Dropdown' -->" );
	}
	else {
		document.writeln( "<td class='Dropdown'>" );
	}
	document.writeln( "<div class='DropdownContent' id='DropdownContentFirst'>" );
	document.writeln( "<ul class='Main'>" );
	document.writeln( "<li class='Main' onmouseover='dropdownOver(this)' onmouseout='dropdownOut(this)'>" );
	var tmpStr = 'Industry Sectors';
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "http://www.pwc.com/lu/eng/about/ind/index.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
	document.writeln( "<ul>" );
	var menuLinks = ['Automotive', 'Banking', 'Information, Communication and Technology', 'Insurance', 'International Structures', 'Investment Management', 'Operational Companies', 'Pharmaceuticals &amp; Life Sciences', 'Public Institutions', 'Transport &amp; Logistics'];
	var menuURLs = ['http://www.pwc.com/Extweb/industry.nsf/docid/4DAC18A488A8CEB68025754C002B0DFC', 'http://www.pwc.com/Extweb/industry.nsf/docid/06B24230E98C03518025754C002BBF81', 'http://www.pwc.com/Extweb/industry.nsf/docid/AFE55834D75002E38025754C002E9CA3', 'http://www.pwc.com/Extweb/industry.nsf/docid/860AEAED207EAD378025754C00359628', 'http://www.pwc.com/Extweb/industry.nsf/docid/9720A38220DA84378025754C003BDF74', 'http://www.pwc.com/extweb/home.nsf/docid/ab9288a638fa40f280257547004c0e8c', 'http://www.pwc.com/Extweb/industry.nsf/docid/6E23F86DA916E8418025754C00386E3F', 'http://www.pwc.com/Extweb/industry.nsf/docid/161E8CB070AF1F968025754C002E5180', 'http://www.pwc.com/Extweb/industry.nsf/docid/52BCEAB3ACD53E9D8025754C00397398', 'http://www.pwc.com/Extweb/industry.nsf/docid/C1423C47D2CAD19F8025754C0036D190'];
	var j = 0;
	for (j=0; j<menuLinks.length; j++ ){
		document.writeln( "<li><div class='DropdownEntry'><a href='" + link( menuURLs[ j ] ) + "' target='_self' title='" + menuLinks[ j ] + "'>" + menuLinks[ j ] + "</a></div></li>" );
	}
	document.writeln( "</ul>" );
	document.writeln( "</li>" );
	document.writeln( "</ul>" );
	document.writeln( "</div>" );
	document.writeln( "</td>" );

//2nd tab menu
	if (section == "2" ){
		document.writeln( "<td class='DropdownSelected'> <!-- Selected dropdown item required the 'DropdownSelected' class instead of 'Dropdown' -->" );
	}
	else {
		document.writeln( "<td class='Dropdown'>" );
	}
	document.writeln( "<div class='DropdownContent'>" );
	document.writeln( "<ul class='Main'>" );
	document.writeln( "<li class='Main' onmouseover='dropdownOver(this)' onmouseout='dropdownOut(this)'>" );
	tmpStr = "Client Challenges";
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "http://www.pwc.com/lu/eng/challenges/index.html " ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
	document.writeln( "<ul>" );
	menuLinks = ['Attract &amp; Retain', 'Authorised Economic Operator (AEO)', 'Capital Markets', 'Fund  Distribution', 'Hedge Funds', 'IFRS', 'Invest in Luxembourg', 'Islamic Finance', 'Managing the economic downturn', 'MiFID', 'Private Equity', 'Real Estate &amp; Infrastructure', 'Risk Management', 'Securitisation', 'Sophisticated UCITS', 'Valuation Services'];
	menuURLs = [
'http://www.pwc.com/extweb/challenges.nsf/docid/1EDB31F30AE5A3A58025753E003A3567', 'http://www.pwc.com/extweb/challenges.nsf/docid/F55D9095A76C8F178025753E00395E41', 'http://www.pwc.com/extweb/challenges.nsf/docid/7B704428E66FB3078025753E003CA82E', 'http://www.pwc.com/extweb/challenges.nsf/docid/451B43AF273875518025753E003D2B49', 'http://www.pwc.com/extweb/challenges.nsf/docid/4D8E8B57347B7E4D8025753E003DB0A7', 'http://www.pwc.com/extweb/challenges.nsf/docid/4791D6AC5F7112F28025753E0044729D', 'http://www.pwc.com/extweb/challenges.nsf/docid/5d80bb314e1c2bc3802575b5004fc627', 'http://www.pwc.com/extweb/challenges.nsf/docid/FC34AF821F255AE88025753E0045295A', 'http://www.pwc.com/extweb/challenges.nsf/docid/9D408C9B607BC2778025753E00506E91', 'http://www.pwc.com/extweb/challenges.nsf/docid/9D8CF021B3A798D98025753E00459123', 'http://www.pwc.com/extweb/challenges.nsf/docid/AD606D30CC7629F68025753E0045C059', 'http://www.pwc.com/extweb/challenges.nsf/docid/2FD34831D8714D2B8025753E00465531', 'http://www.pwc.com/extweb/challenges.nsf/docid/8ACBC12852A803DF8025753F0054151B', 'http://www.pwc.com/extweb/challenges.nsf/docid/95A253790817DBD08025753E004702DE', 'http://www.pwc.com/extweb/challenges.nsf/docid/2B13CB64C03521068025753E004FC90C', 'http://www.pwc.com/extweb/challenges.nsf/docid/69a296add1011a5880257563003b0bec'];
	for (j=0; j<menuLinks.length; j++ ){
		document.writeln( "<li><div class='DropdownEntry'><a href='" + link( menuURLs[ j ] ) + "' target='_self' title='" + menuLinks[ j ] + "'>" + menuLinks[ j ] + "</a></div></li>" );
	}
	document.writeln( "</ul>" );
	document.writeln( "</li>" );
	document.writeln( "</ul>" );
	document.writeln( "</div>" );
	document.writeln( "</td>" );

//3rd tab menu
	if (section == "3" ){
		document.writeln( "<td class='DropdownSelected'> <!-- Selected dropdown item required the 'DropdownSelected' class instead of 'Dropdown' -->" );
	}
	else {
		document.writeln( "<td class='Dropdown'>" );
	}
	document.writeln( "<div class='DropdownContent'>" );
	document.writeln( "<ul class='Main'>" );
	document.writeln( "<li class='Main' onmouseover='dropdownOver(this)' onmouseout='dropdownOut(this)'>" );
	tmpStr = "Our Services";
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "http://www.pwc.com/lu/eng/about/svcs/index.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
	document.writeln( "<ul>" );
	menuLinks = ['Accounting &amp; Tax Experts', 'Anti-Money Laundering', 'Audit &amp, Assurance', 'Corporate  Finance', 'Fraud Prevention &amp; Detection', 'Performance Improvement', 'Human Resource Services', 'PwC ACADEMY', 'Regulatory &amp; Compliance Advisory', 'System &amp; Process Assurance', 'Tax Services'];
	menuURLs = [
'http://www.pwc.com/Extweb/service.nsf/docid/F1311AD70A090B988025753500498EB8', 'http://www.pwc.com/Extweb/service.nsf/docid/D5EE0744709A05A6802575350049F323', 'http://www.pwc.com/extweb/service.nsf/docid/CB2B702AEF8BC585852575210052E3F2', 'http://www.pwc.com/Extweb/service.nsf/docid/CF6ADAEA890BE23A80257535004AF089', 'http://www.pwc.com/Extweb/service.nsf/docid/94CB9035453F22BD8025754500526F13', 'http://www.pwc.com/Extweb/service.nsf/docid/C1C295C4F0AA25AE802575350051CABC', 'http://www.pwc.com/Extweb/service.nsf/docid/936C16A82A57752280257535004CACDA', 'http://www.pwcacademy.lu/', 'http://www.pwc.com/Extweb/service.nsf/docid/2BFD4D2DED5CCFA3802575350057C101', 'http://www.pwc.com/extweb/service.nsf/docid/74EC002F6C9D3F3980257536002B1AE6', 'http://www.pwc.com/extweb/service.nsf/docid/08B7B2C214510ADA80257536002B4991'];
	for (j=0; j<menuLinks.length; j++ ){
		document.writeln( "<li><div class='DropdownEntry'><a href='" + link( menuURLs[ j ] ) + "' target='_self' title='" + menuLinks[ j ] + "'>" + menuLinks[ j ] + "</a></div></li>" );
	}
	document.writeln( "</ul>" );
	document.writeln( "</li>" );
	document.writeln( "</ul>" );
	document.writeln( "</div>" );
	document.writeln( "</td>" );

	document.writeln( "</tr>" );
	document.writeln( "</table>" );
	document.writeln( "</div><br style='clear: both;'/>" );
	document.writeln( "</div>" );
	tabMenuEndBar();
	document.writeln( "<!-- END HEADER B2 -->");

}
// This function generates the Quick Search for country language specific (Collection Based Search)
function countrySpecificQuickSearch() {
	var tmpstr = domain + "http://www.pwc.com/extweb/searchresults.nsf/Results/Simple?OpenDocument";
	document.write("<FORM id='frmSearch' name='frmSearch' onsubmit='checkSearch()' action='" + tmpstr + "'>");
	document.writeln( "<input type=\"hidden\" name=\"opendocument\" value=\"1\">");  //to get it to put opendocument first!
	document.write("<INPUT TYPE=\"hidden\" NAME=\"ss\" VALUE=\"sand\">");
	document.write("<input type=\"hidden\" name=\"searchLoc\" value=\"http://search1.pwc.com/search/?sp-a=00063301-sp00000000\">");
	document.write("<input type=\"hidden\" name=\"sp-t\" value=\"js\">");
	document.write("<input type=\"hidden\" name=\"sp-x-1\" value=\"pwcGeo\">");
	document.write("<input type=\"hidden\" name=\"sp-x-2\" value=\"pwcLang\">");
	document.write("<INPUT TYPE=\"hidden\" NAME=\"sp_c\" VALUE=\"25\">");
	document.write("<INPUT TYPE=\"hidden\" NAME=\"sp_p\" VALUE=\"phrase\">");
	document.write("<INPUT TYPE=\"hidden\" NAME=\"sp_q_1\" VALUE=\"lu\">");
	document.write("<INPUT TYPE=\"hidden\" NAME=\"sp_q_2\" VALUE=\"eng\">");
	document.write("<input type=\"hidden\" name=\"sp-f\" value=\"ISO-8859-1\">");
	document.write("<input type=\"hidden\" name=\"sp-x-9\" value=\"pwcHideLevel\">");
	document.write("<input type=\"hidden\" name=\"sp-q-9\" value=\"0\">");
}
function QuickSearch(){
	document.writeln( "<form METHOD='get' id='frmSearch' name='frmSearch' ACTION='http://search1.pwc.com/search/'>");
	document.write ("<INPUT TYPE='hidden' NAME='sp-a' VALUE='00063301-sp00000000'>");
	document.write ("<INPUT TYPE='hidden' NAME='sp-c' VALUE='25'>");
	document.write ("<INPUT TYPE='hidden' NAME='sp-p' VALUE='phrase'>");
	document.write ("<INPUT TYPE='hidden' NAME='sp-w-control' VALUE='1'>");
}
function frameHeaderRightPersistentFormSearchBox(){
	if (hideSearchBox==1){ return("") }
	if ("1"=="1") {
		countrySpecificQuickSearch();
	}
	else {
		QuickSearch();
	}
	document.writeln( "<span class='searchBoxContainer'>" );
	var tmpStr = "Search";
	document.writeln( "<label for='sp-q'><img src='" + domain_imagessl + "/alumni/images/ui/tran.gif' width='1' height='1' border='0' alt='" + tmpStr + "' /></label>" );
	document.writeln( "<input accesskey='4' class='sp-q' id='sp-q' name='sp-q' onfocus='clearSearch();' value='"+ tmpStr + "' />" );
	if (""=="1"){
		document.writeln( "<input type='image' name='btnSubmitSearch' src='" + domain_imagessl + "/alumni/images/" + css + "/search.gif' alt=' " + tmpStr + " ' />" );
	}
	else {
		document.writeln( "<input type='image' name='btnSubmitSearch' src='" + domain_imagessl + "/alumni/images/" + css + "/search.gif' alt=' " + tmpStr + " ' />" );
	}
	document.writeln( "</span>" );
	document.writeln( "</form>");
}
function frameHeaderRightPersistentFormCountries(){
	if (hideCountryBox==1){ return("") }
	document.writeln( "<form onsubmit='return go_country()' id='frmCountries'  name='frmCountries'>");
	//document.writeln( "<form id='frmCountries'  name='frmCountries' action='Javascript:goCountryForm()'>");
	document.writeln( "<span class='countryDLLContainer'>");
	var tmpStr = "Country/Territory";
	var countries = ["Global","Algeria","Angola","Antigua","Argentina","Aruba","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Barbados","Belgium","Benin","Bermuda","Bolivia","Bosnia & Herzegovina","Botswana","Brazil","Bulgaria","Burkina Faso","Cameroon","Canada","Caribbean","Cayman Islands","Central African Republic","Central America","Central Asia and Caucasus","Chad","Channel Islands","Chile","China","Colombia","Congo (Brazzaville)","Congo (Dem. Rep)","Costa Rica","Cote D'Ivoire","Croatia","Cyprus","Czech Republic","Denmark","Dominican Republic","East Caribbean","Ecuador","Egypt","El Salvador","Equatorial Guinea","Estonia","Finland","France","Francophone Africa","Gabon","Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Guatemala","Guernsey","Guinea","Honduras","Hong Kong","Hungary","Iceland","India","Indonesia","Interamericas","Iran","Isle Of Man","Israel","Italy","Jamaica","Japan","Jersey","Jordan","Kazakhstan","Kenya","Korea","Kuwait","Kyrgyzstan","Latvia","Lebanon","Lesotho","Libya","Lithuania","Luxembourg","Macedonia","Madagascar","Maghreb","Malawi","Malaysia","Mali","Malta","Mauritania","Mauritius","Mexico","Middle East Region","Moldova","Morocco","Mozambique","Namibia","Netherlands","Netherlands Antilles","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Norway","Oman","Panama","Papua New Guinea","Paraguay","Peru","Philippines","Poland","Portugal","Qatar","Republic Of Ireland","Romania","Russia","Saudi Arabia","Senegal","Serbia and Montenegro","Singapore","Slovakia","Slovenia","South Africa","South & Central America","Spain","Sri Lanka","St. Lucia","Sweden","Switzerland","Taiwan","Tanzania","Thailand","Togo","Trinidad and Tobago","Tunisia","Turkey","Uganda","Ukraine","United Arab Emirates","United Kingdom","Uruguay","USA","Uzbekistan","Venezuela","West Bank & Gaza","Zambia","Zimbabwe"];
	var countryURLs = ["http://www.pwc.com/gx/eng/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/insights.nsf/docid/0D6E39B4A29A62FC80256DF1002506CC","http://www.pwc.com/extweb/home.nsf/docid/9FD866F007E15716852570CF0070A2F0","http://www.pwc.com/extweb/home.nsf/docid/40B30C91E6D9EAEB85256D4E00655A21","http://www.pwc.com/extweb/home.nsf/docid/1E5CADB3234D23748525712A0049F452","http://www.pwc.com/extweb/home.nsf/docid/1CDDF96D6BA83827CA257046004E2E8F","http://www.pwc.com/at/ger/main/home/index.html","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.com/extweb/pwclocations.nsf/ViewLocByCityD2005?OpenAgent&Bahamas~GX~ENG~CY~Ocean","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/br/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/9E5C5B0E69C79A31802571250053229F","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/A17744C3B6F4F3FA802570DF00515850","http://www.pwc.com/extweb/home.nsf/docid/BE6EAA7E74301A3B85256D2800678174","http://www.pwc.com/extweb/Home.nsf/docid/EBC7BB1FC4474F7380256F15004661C4","http://www.pwc.com/bw/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/F6511713621C22EB85256D13004907C1","http://www.pwc.com/bg/bul/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/ca/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/B8F8DF19B609CFC18525706F004E5148","http://www.pwc.com/extweb/home.nsf/docid/17CF61965D3E2B4885256F4E006BE2B5","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/extweb/home.nsf/docid/415FDE1A7F04A19E802571480044C788","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/jg/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/75949465E685E2DF85256D3D0067531C","http://www.pwc.com/cn/chn/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/EED67E393EB675D785256D25004E1220","/cf/fra/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/aboutus.nsf/docid/8C36F9C34EA5FB3985256D3C0070335F","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/299240C30C3E5A848525711100636470","http://www.pwc.com/extweb/home.nsf/docid/377DE96A9813442A80256D2B0053D32D","http://www.pwc.com/cz/cze/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/AE885926267611E4802570B200329190","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/extweb/home.nsf/docid/47B15A12F1047D0185256D1200645453","http://www.pwc.com/extweb/home.nsf/docid/B5E411F1C3A35156852570AB006817FF","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/6A70704626F2C062802570EE004CC26B","http://www.pwc.com/extweb/home.nsf/docid/78924DBDE390C1B080257132005FBF12","http://www.pwc.com/fr/eng/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.com/de/ger/main/home/index.html","http://www.pwc.com/gh/","http://www.pwc.com/extweb/Home.nsf/docid/A7E970A6EDB9115B85256D2000437926","http://www.pwc.com/extweb/home.nsf/docid/D6F13EE15D69057780256FE000437808 ","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/jg/eng/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/hk/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/AF3317B0B42CAA10802570F30035A1AD","http://www.pwc.com/extweb/home.nsf/docid/6FE15236BA7CBA748025711C00644955","http://www.pwc.com/in/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/4A20469ADFA63033CA25703D0034141D","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/extweb/home.nsf/docid/8550665B74406CAE802570D1004FA9D0","http://www.pwc.com/il/eng/main/home/index.html","http://www.pwc.com/it/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/B935E1D8F5888DA0852570830058CE27","http://www.pwc.com/extweb/Home.nsf/docid/552C02819F3655E8CA257117001D9639","http://www.pwc.com/jg/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.com/ke/eng/main/home/index.html","http://www.pwc.com/extweb/Home.nsf/docid/BC8581EBB50D0047CA256F4E002BC20C","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/DCAE817F1F098406852570F9007738E5","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/za/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/extweb/home.nsf/docid/8A469D9D8A1465A18025711D00627741","http://www.pwc.com/lu/eng/main/home/index.html","http://www.pwc.com/extweb/Home.nsf/docid/B0219DB88731F902802570C200575566","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/za/eng/main/home/index.html","http://www.pwc.com/extweb/Home.nsf/docid/CF5CA96E4213B792CA256EA1000B943B","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/mt/eng/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/mu/","http://www.pwc.com/extweb/home.nsf/docid/21D1FFBD92FCBB83852570B20068809F","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/md/eng/main/home/index.html","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/za/eng/main/home/index.html","http://www.pwc.com/na/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/5A0574A9E7FF497580256EE80027EFB9","http://www.pwc.com/extweb/home.nsf/docid/44EC4C501E6CB071852570AF004DB154","http://www.pwc.com/nc/eng/main/home/index.html","http://www.pwc.com/nz/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/5FC9D56417735E8B80256DBF00287759","http://www.pwc.com/extweb/home.nsf/docid/18805869CF13D1E680257117004E01DC","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/pg/eng/main/home/index.html","http://www.pwc.com/py/spa/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/8B5ED01383F0BFD285256E1D00781B8F","http://www.pwc.com/extweb/home.nsf/docid/CC11F79590C8B289CA256EA10007F11D","http://www.pwc.com/pl/pol/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/23ABC0E1077A4E73802570F50063CCA4","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/ie/eng/main/home/index.html","http://www.pwc.com/ro/eng/main/home/index.html","http://www.pwc.com/ru/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/CA1BE286CC4714278025710D00497783","http://www.pwc.com/extweb/home.nsf/docid/CE3F829D700769FDCA257116000F8C76","http://www.pwc.com/extweb/home.nsf/docid/2761B492C7D27ED0802570D6006286AD","http://www.pwc.com/extweb/home.nsf/docid/30715A716318F25080256E4A00587E3B","http://www.pwc.com/za/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/EED67E393EB675D785256D25004E1220","http://www.pwc.com/es/eng/main/home/index.html","http://www.pwc.com/lk/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/2B772061F7F944E385256D3D0067FB51","http://www.pwc.com/extweb/home.nsf/docid/F143463D24381134802570C3004D82EB ","http://www.pwc.com/ch/eng/main/home/index.html","http://www.pwc.com/extweb/Home.nsf/docid/567003211ABD1D2ACA256DFF0028E8C1","http://www.pwc.com/tz/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/D02A36B59A2B57DDCA2571110026E503","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/B8F8DF19B609CFC18525706F004E5148","http://www.pwc.com/cf/fra/main/home/index.html","http://www.pwc.com/tr/tur/main/home/index.html","http://www.pwc.com/ug/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/E9794792728AF1FC852570BC0059AF55","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/uk/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/21EE6CE2974215C285256DF700738913","http://www.pwc.com/us/eng/main/home/index.html","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/EED67E393EB675D785256D25004E1220","http://www.pwc.com/extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/extweb/home.nsf/docid/6E0B014B83923A9680256DD3003ABDB9","http://www.pwc.com/za/eng/main/home/index.html"];
	document.writeln( "<label for='countryDLL'><img src='" + domain_imagessl + "/alumni/images/ui/tran.gif' width='1' height='1' border='0' alt='" + tmpStr + "' /></label>" );
	document.writeln( "<select class='countryDLL' name='countryDLL'>");
	document.writeln( "<option value='#' selected='selected'> " + tmpStr + "</option>");

	var j = 0;
	for (j=0; j<countries.length; j++) {
		document.writeln( "<option value='" + link( countryURLs[ j ] ) + "'>" + countries[ j ] + "</option>");
	}
	document.writeln( "</select>");

	if (""=="1"){
		tmpStr = "";
		document.writeln( "<input type='image' name='btnSubmitCountry' src='" + domain_imagessl + "/alumni/images/" + css + "/go.gif' alt='" + tmpStr + "' />");
	}
	else {
		tmpStr = "Go" ;
		document.writeln( "<input type='image' name='btnSubmitCountry' src='" + domain_imagessl + "/alumni/images/" + css + "/go.gif' alt='" + tmpStr + "' />");
	}
	document.writeln( "</span>");
	document.writeln( "</form>");
}
function frameHeaderRightPersistentForm(){
	if ( hideCountryBox==1 && hideSearchBox==1 ){ return("") }
	frameHeaderRightPersistentFormCountries();
	frameHeaderRightPersistentFormSearchBox();
}
function frameHeaderRightPersistentLinks(){
	if ( hideLPN==1 ){ return("") }	
	document.writeln( "<div id='persistentContainer'>");
	document.writeln( "<ul class='persistentLinks' id='nav1'>");
		document.writeln( lpnLink( "<li class='persistentTop'><a href='http://www.myluckystar.lu/intro' target='_self' title='Careers'>Careers</a></li>" ) );
		document.writeln( lpnLink( "<li class='persistentTop'><a href='http://www.pwc.com/Extweb/ncpressrelease.nsf/docid/67947950994493AA802575580050AF4B' target='_self' title='Press Room'>Press Room</a></li>" ) );
		document.writeln( lpnLink( "<li class='persistentTop'><a href='http://www.pwcacademy.lu/' target='_self' title='PwC ACADEMY'>PwC ACADEMY</a></li>" ) );
		document.writeln( lpnLink( "<li class='persistentTop'><a href='http://www.pwc.com/extweb/pwcpublications.nsf/docid/F2E50885001DC41580257559004A168F' target='_self' title='Publications'>Publications</a></li>" ) );
		document.writeln( lpnLink( "<li class='persistentTop'><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/D18E8FBAACDAFFC4802575520055029C' target='_self' title='About Us'>About Us</a><ul><li><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/8806DB6EEB82445A802575520055E2A1' target='_self' title='Leadership '>Leadership</a></li> <li><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/F0E5465ACF9DAAE380257554005719AC' target='_self' title='Social Responsibility '>Social Responsibility</a></li> <li><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/07F01D94A01688FF80257555003B7F76' target='_self' title='Luxembourg Annual Review '>Luxembourg Annual Review</a></li> <li><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/1EF683EE17F07422802575520054326A' target='_self' title='Corporate Governance '>Corporate Governance</a></li> <li><a href='http://www.pwc.com/Extweb/aboutus.nsf/docid/6B16DAB0E90001F080257555003BAEB6' target='_self' title='Office '>Office</a></li></ul></li>" ) );
		document.writeln( lpnLink( "<li><a accesskey='9' href='http://www.pwc.com/extweb/onlineforms.nsf/weblookup/LUENGNSS0Contact_us_Luxembourg?opendocument' target='_self' title='Contact Us'>Contact Us</a></li>" ) );
	document.writeln( "</ul>");
	document.writeln( "</div><br clear='all' />");
}
function frameHeaderRight(){
	document.writeln( "<div id='headerRight'>");
	// Close window link only displayed on print view
	document.writeln( "<div class='closeWindow'>" );
	document.writeln( "<script  type='text/javascript'>" );
	document.writeln( "var tmpStr = \"close window\";");
	document.writeln( "document.write(\"<a href='JavaScript:window.close();'>\" + tmpStr + \" <img src='" + domain_imagessl + "/alumni/images/ui/icons/exit.gif' border='0' alt='\" + tmpStr + \"' /></a>\")" );
	document.writeln( "</script>" );
	document.writeln( "<noscript>Click on the'X' in the top right corner to close this window.</noscript>" );
	document.writeln( "</div>" );
	frameHeaderRightPersistentLinks();
	frameHeaderRightPersistentForm();
	document.writeln( "</div>" );
}
function frameHeaderLeftLang(){
	if ( hideLang==1 ){ return("") }	
	generateLanguageList();
}
function frameHeaderLeftTerritory(){
	if ( hideGHPLink==1 ){ return("") }	
	var tmpStr = 'Luxembourg Home';
	document.writeln( "<span class='territoryName'><a accesskey='1' href='" + link( "http://www.pwc.com/lu/eng/main/home/index.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></span>");
}
function frameHeaderLeftLogo(){
	//Displays the PwC logo
	if ( hidePwCLogo==1 ){ return("") }	
	document.writeln( "<div class='pwcLogo'>");
	document.writeln( "<img src='/alumni/images/pwc.gif' alt='PricewaterhouseCoopers Logo' width='242' height='28' border='0' />");
	document.writeln( "</div>");
}
function frameHeaderLeft(){
	if ( hidePwCLogo==1 && hideGHPLink==1 && hideLang==1 ){ return("") }	
	document.writeln( "<div id='headerLeft'>");
	frameHeaderLeftLogo();
	frameHeaderLeftTerritory();
	frameHeaderLeftLang();
	document.writeln( "</div>");
}
function frameHeader(){
	document.writeln( "<div id='frameHeader'>");
	document.writeln( "<!-- START HEADER A  -->");
	 frameHeaderLeft();
	 frameHeaderRight();
	document.writeln( "<!-- END HEADER A -->");
	document.writeln( "<br clear='all'/>");
	document.writeln( "</div>");
}
function buildHeader(){
	if ( hideTopNav==1){ return("") }	
	document.writeln( "<div id='headerContainer'>");
	 frameHeader();
	 tabMenu();
	document.writeln( "</div>");
}
function footerText(year){
	var Datum = new Date();
	var year = Datum.getFullYear();

	document.writeln( "<div class='footerText'>" );
	document.write("&copy; "+year+" PricewaterhouseCoopers S.&agrave; r.l. All rights reserved. PricewaterhouseCoopers refers to the network of member firms of PricewaterhouseCoopers International Limited, each of which is a separate and independent legal entity.");
	document.writeln( "</div>" );
}
function footerAccessKeyInfo(){
	document.writeln( "<!-- Supplementary Accesskey information for ALL PAGES -->" );
	document.writeln( "<a accesskey='0' href='http://www.w3c.org'><img src='" + domain_imagessl + "/alumni/images/ui/tran.gif' width='1' height='1' border='0' alt='Accessibility information' /></a> <!-- Accessibility page-->" );
	document.writeln( "<a accesskey='2' href='#pageContent'><img src='" + domain_imagessl + "/alumni/images/ui/tran.gif' width='1' height='1' border='0' alt='Skip navigation' /></a> <!-- Skip navigation -->" );
	document.writeln( "<a accesskey='3' href='/gx/eng/main/countriesonline/index_text.html'><img src='" + domain_imagessl + "/alumni/images/ui/tran.gif' width='1' height='1' border='0' alt='Countries online' /></a> <!-- Countries online -->" );
}
function footerLinks(){
	document.writeln( "<div class='footerLinks'>" );
	if ( "Legal Disclaimer" == "" ){
		//default legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/gx/eng/main/legal/index.html" ) + "' title='Legal'>General Terms &amp; Conditions</a></span>" );
	} else {
		//override legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/home.nsf/docid/D257A64EFD56E15A8025755900527BE6" ) + "' title='Legal Disclaimer'>General Terms &amp; Conditions</a></span>" );
	}
	if ( "Site Provider" == "" ){
		//default about provider
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/home.nsf/docid/FD5FB17FC0ACFD88802575590052AFA5" ) + "' title='Site Provider'>Site Provider</a></span>" );
	} else {
		//override about provider
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/home.nsf/docid/FD5FB17FC0ACFD88802575590052AFA5" ) + "' title='Site Provider'>Site Provider</a></span>" );
	}
	if ( "Email Webmaster" == "" ){
		//default Email Webmaster
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/onlineforms.nsf/weblookup/LUENGNSS0Contact_us_Luxembourg?opendocument" ) + "' title='Email Webmaster'>Email Webmaster</a></span>" );
	} else {
		//override Email Webmaster
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/onlineforms.nsf/weblookup/LUENGNSS0Contact_us_Luxembourg?opendocument" ) + "' title='Email Webmaster'>Email Webmaster</a></span>" );
	}
	if ( "Site Map" == "" ){
		//default site map
		document.writeln( "<span class='footerItem'><a accesskey='7' href='" + link( "http://www.pwc.com/extweb/home.nsf/docid/E19F5C8805052E06802575590051B0B3" ) + "' title='Site Map'>Site Map</a></span>" );
	} else {
		//override site map
		document.writeln( "<span class='footerItem'><a accesskey='7' href='" + link( "http://www.pwc.com/extweb/home.nsf/docid/E19F5C8805052E06802575590051B0B3" ) + "' title='Site Map'>Site Map</a></span>" );
	}
	//START generic footer links
	if( "RSS" != "" ){
		var FooterText = ["RSS"];
		var FooterURL = ["http://www.pwc.com/Extweb/pwcpublications.nsf/docid/EA61E4E9897716D080257559004AC3F0"];
		for( n = 0; n < FooterText.length; n++)
		{
			if (n < FooterText.length - 1){
				document.writeln( "<span class='footerItem'><a href='" + link( FooterURL[ n ] ) + "' title='" + FooterText[ n ] + "'>" + FooterText[ n ] + "</a></span>" );
			} else {
				//last item needs an id property
				document.writeln( "<span class='footerItem' id='footerItem1'><a href='" + link( FooterURL[ n ] ) + "' title='" + FooterText[ n ] + "'>" + FooterText[ n ] + "</a></span>" );
			}
		}
	}
	//END generic footer links
	document.writeln( "</div>" );
}
function buildFooter(year){
	document.writeln( "<div id='footerContainer'>" );
	footerLinks();
	footerText(year);
	footerAccessKeyInfo();
	document.writeln( "</div>" );
}
// This function calls the OnLoad event.
function doOnLoadTasks(){
	//This function resides in the Standards.JS document
	startList();
}
window.focus()
