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="/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(">","&gt;");
		        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=['0'];
var lang = 'eng';
var languageIdentifiers=['eng'];
var languageNames=['English'];
var languageURLs=['/lu/eng/main/home/index.html'];
var section='aboutus';
var country='lu';
var configVal = 0;
var css = 'ocean';
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 + "/events/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 + "/events/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( "<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 = 'Survey';
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "/retailisationofnonucits/survey.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
/*	document.writeln( "<ul>" );
	var menuLinks = ['Banking', 'Investment Management', 'Insurance', 'Public Institutions', 'Operational Companies'];
	var menuURLs = ['/lu/eng/about/ind/banking.html', '/lu/eng/about/ind/investment-mngt.html', '/lu/eng/about/ind/insurance.html', '/lu/eng/about/ind/services.html', '/lu/eng/about/ind/operational.html'];
	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 = "Participate";
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "/retailisationofnonucits/participate.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
/*	document.writeln( "<ul>" );
	menuLinks = ['German Investment Tax', 'IFRS', 'International Structures', 'Private Equity', 'PwC ACADEMY', 'Real Estate', 'Reporting Effectiveness', 'Savings Directive', 'Securitisation', 'Ucits III'];
	menuURLs = ['/lu/eng/challenges/gtax', '/lu/eng/challenges/ifrs', '/lu/eng/challenges/its', '/lu/eng/challenges/pe', '/lu/eng/challenges/academy', '/lu/eng/challenges/realestate', '/lu/eng/challenges/reporting', '/lu/eng/challenges/sd', '/lu/eng/challenges/securitisation', '/lu/eng/challenges/ucits'];
	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 = "FAQ";
	document.writeln( "<div class='DropdownTitle'><a href='" + link( "/retailisationofnonucits/faq.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
/*	document.writeln( "<ul>" );
	menuLinks = ['Accounting & Tax Experts', 'Audit & Assurance', 'Corporate Finance', 'Performance Improvement', '- Human Resource Services ', 'PwC ACADEMY', 'Regulatory & Compliance Advisory', 'System & Process Assurance', 'Tax Consulting'];
	menuURLs = ['/lu/eng/about/svcs/acc.html', '/lu/eng/about/svcs/abas.html', '/lu/eng/about/svcs/cf.html', '/lu/eng/about/svcs/pi.html', '/lu/eng/about/svcs/hrc.html', 'http://pwcacademy.pwc.lu/', '/lu/eng/about/svcs/rcas.html', '/lu/eng/about/svcs/spa.html', '/lu/eng/about/svcs/ts.html'];
	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 = "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 + "/events/images/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 + "/events/images/' + country + '/ui/icons/" + css + "/search.gif' alt=' " + tmpStr + " ' />" );
	}
	else {
		document.writeln( "<input type='image' name='btnSubmitSearch' src='" + domain_imagessl + "/events/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 = "Countries";
	var countries = ["Global","Africa","Albania","Algeria","Angola","Antigua","Argentina","Aruba","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Barbados","Belgium","Benin","Bermuda","Bolivia","Bosnia & Herzegovina","Botswana","Brazil","Bulgaria","Burkina Faso","Burundi","Cameroon","Camores","Canada","Cape Verde","Caribbean","Cayman Islands","Central African Republic","Central America","Central Asia and Caucasus","Chad","Channel Islands","Chile","China","Colombia","Congo","Congo DR","Costa Rica","Cote D&#39;Ivoire","Croatia","Cyprus","Czech Republic","Denmark","Djibouti","Dominican Republic","East Caribbean","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Finland","France","Gabon","Gambia","Georgia","Germany","Ghana","Gibraltar","Greece","Guatemala","Guernsey","Guinea","Guinea Bissau","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","Liberia","Libya","Lithuania","Luxembourg","Macedonia","Madagascar","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","Rwanda","Sao Tome Principe","Saudi Arabia","Senegal","Serbia and Montenegro","Seychelles","Sierra Leone","Singapore","Slovakia","Slovenia","Somalia","South Africa","South & Central America","Spain","Sri Lanka","St. Lucia","Sudan","Swaziland","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/","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/40CCAF891C2DA17E802571A900436F70","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","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/Extweb/home.nsf/docid/C4B1191C962F751E80257114002B921D","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/extweb/home.nsf/docid/BC07541C40DC1FAC8525715A0055DDEB","http://www.pwc.com/Extweb/home.nsf/docid/9E5C5B0E69C79A31802571250053229F","http://www.pwc.com/ac/eng/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/extweb/home.nsf/docid/BFDB32B6051A65288025718700590945","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ca/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/B8F8DF19B609CFC18525706F004E5148","http://www.pwc.com/extweb/home.nsf/docid/B5550DA201DEB7DF852571930057BCFB","http://www.pwc.com/ac/eng/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/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/92403CFE9D65BACD8025719400406335","http://www.pwc.com/extweb/home.nsf/docid/75949465E685E2DF85256D3D0067531C","http://www.pwccn.com/home/eng/index.html","http://www.pwc.com/extweb/home.nsf/docid/CFE6680F679A58DA852571070042D538","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/aboutus.nsf/docid/8C36F9C34EA5FB3985256D3C0070335F","http://www.pwc.com/ac/eng/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/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/extweb/home.nsf/docid/92911683B3210FAB8525715B0066F74F","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/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/Extweb/home.nsf/docid/6A70704626F2C062802570EE004CC26B","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/C4A166D2D3BAC145802571370066E8A6","http://www.pwc.fr","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/cs/eng/main/home/index.html","http://www.pwc.de","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/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwchk.com/home/eng/index.html","http://www.pwc.com/Extweb/home.nsf/docid/AF3317B0B42CAA10802570F30035A1AD","http://www.pwc.com/extweb/home.nsf/docid/6FE15236BA7CBA748025711C00644955","http://www.pwc.com/extweb/home.nsf/docid/6B8267A43076C7BDCA257186004E4A7D","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/extweb/home.nsf/docid/B888B0687D2E06E88025716E005305B7","http://www.pwc.com/Extweb/home.nsf/docid/D62287FBAD12001E80256E70003B18C5","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/extweb/home.nsf/docid/0ef01e0598f3f43880256d5d0044b5d2","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/ac/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/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/Extweb/Home.nsf/docid/CF5CA96E4213B792CA256EA1000B943B","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/BCFC5699D83BDB1E8025718B003920CC","http://www.pwc.com/ac/eng/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/ac/eng/main/home/index.html","http://www.pwc.com/ac/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/extweb/home.nsf/docid/F65A8522A2373FC68525718E004B33B5","http://www.pwc.com/Extweb/Home.nsf/docid/9B380F7B40655ED1CA25721E006A91B8","http://www.pwc.com/extweb/home.nsf/docid/995016900FBC2EB285256EBB0072C160","http://www.pwc.com/ac/eng/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/extweb/home.nsf/docid/EAE9E95B86648962852571770033719B","http://www.pwc.com/ro/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/36ED94E5E50AACC580257172002AEEA7","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/Extweb/home.nsf/docid/6350BB94BE4CD9BB802570FA0037AC44","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/Extweb/home.nsf/docid/CA1BE286CC4714278025710D00497783","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","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/ac/eng/main/home/index.html","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/extweb/home.nsf/docid/10DF1FB2BD23737185257193004E5C34","http://www.pwc.com/extweb/home.nsf/docid/07D0CED04DCFF409852570D700558284","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/Extweb/home.nsf/docid/F143463D24381134802570C3004D82EB ","http://www.pwc.ch/en/","http://www.pwc.com/Extweb/Home.nsf/docid/96AFA50548991808CA25717A0027D58A","http://www.pwc.com/extweb/home.nsf/docid/B2D6A16A5AB1634080256D64002CCD65","http://www.pwc.com/extweb/home.nsf/docid/D02A36B59A2B57DDCA2571110026E503","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/DDEF4B2E16841D7C852570D2004C8158","http://www.pwc.com/ac/eng/main/home/index.html","http://www.pwc.com/extweb/home.nsf/docid/A1A5D5AEA42B593F802571230049B5C0","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/ac/eng/main/home/index.html"];
	document.writeln( "<label for='countryDLL'><img src='" + domain_imagessl + "/events/images/tran.gif' width='1' height='1' border='0' alt='" + tmpStr + "' /></label>" );
	document.writeln( "<select class='countryDLL' name='countryDLL'>");
	document.writeln( "<option value='#' selected='selected'>&nbsp;" + 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 + "/events/images/" + country + "/ui/icons/" + css + "/go.gif' alt='" + tmpStr + "' />");
	}
	else {
		tmpStr = "Go" ;
		document.writeln( "<input type='image' name='btnSubmitCountry' src='" + domain_imagessl + "/events/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.pwc.com/lu' target='_blank' title='Luxembourg Home'>Luxembourg Home</a></li>" ) );
	document.writeln( lpnLink( "<li><a accesskey='9' href='http://www.pwc.com/extweb/NewCoWebPouch.nsf/Memo?OpenForm&info.lu@lu.pwc.com^lu^eng' 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 + "/events/images/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 = 'Retailisation of non-UCITS funds in Europe';
	document.writeln( "<span class='territoryName'><a accesskey='1' href='" + link( "/retailisationofnonucits/survey.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='/events/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){
	if(!year){
		year="2008"
	}
	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 + "/events/images/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 + "/events/images/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 + "/events/images/tran.gif' width='1' height='1' border='0' alt='Countries online' /></a> <!-- Countries online -->" );
}
function footerLinks(){
	document.writeln( "<div class='footerLinks'>" );
	if ( "" == "" ){
		//default privacy links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/gx/eng/main/privacy/index.html" ) + "' title='Privacy'>Privacy Statement</a></span>" );
	} else {
		//override privacy links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/gx/eng/main/privacy/index.html" ) + "' title='Privacy'>Privacy Statement</a></span>" );
	}
	if ( "" == "" ){
		//default legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/lu/eng/main/legal/legal.html" ) + "' title='Legal'>Legal Disclaimer</a></span>" );
	} else {
		//override legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/lu/eng/main/legal/legal.html" ) + "' title='Legal'>Legal Disclaimer</a></span>" );
	}
	if ( "" == "" ){
		//default about provider
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/lu/eng/main/siteprovider/siteprovider.html" ) + "' title='About Site Provider'>About Site Provider</a></span>" );
	} else {
		//override about provider
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/lu/eng/main/siteprovider/siteprovider.html" ) + "' title='About Site Provider'>About Site Provider</a></span>" );
	}
	if ( "" == "" ){
		//default Email Webmaster
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/NewCoWebPouch.nsf/Memo?OpenForm&cif=cu&c=lu&l=eng" ) + "' title='E-mail Webmaster'>E-mail Webmaster</a></span>" );
	} else {
		//override Email Webmaster
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/extweb/NewCoWebPouch.nsf/Memo?OpenForm&cif=cu&c=lu&l=eng" ) + "' title='E-mail Webmaster'>E-mail Webmaster</a></span>" );
	}
	if ( "" == "" ){
		//default site map
		document.writeln( "<span class='footerItem' id='footerItem1'><a href='" + link( "http://www.pwc.com/lu/eng/main/sitemap/sitemap.html" ) + "' title='Site Map'>Site Map</a></span>" );
	} else {
		//override site map
		document.writeln( "<span class='footerItem' id='footerItem1'><a href='" + link( "http://www.pwc.com/lu/eng/main/sitemap/sitemap.html" ) + "' title='Site Map'>Site Map</a></span>" );
	}
	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()
