﻿function go_country(){
	var dd = document.forms["frmCountries"].countryDLL;
	var thehref = dd.options[dd.selectedIndex].value;
	dd.selectedIndex = 0;
	<!--window.location.href = thehref;-->
	if (thehref!="#") {
		window.open(thehref);
	} else {
		dd.selectedIndex = 0;
	}
	return (false);
}
function checkSearch(){
	var srch = document.getElementById( "searchText" );
	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);
	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','gx','eng','','EUMO',''];
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=['http://www.pwchk.com/home/eng/index.html'];
//var section='1';
var country='gx';
var configVal = 0;
//var css = 'terracotta';
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;
}
// Hide language option 1 - Hide on all pages
if (""=="1"){
	hideLang = !hideLang;
}
// Hide language option 2 - Hide on all pages, except home page
if (""=="2"){
	if ("std2"!="ghp2" && "std2"!="htmlhp2"){
		hideLang = !hideLang;
	}
}
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 ){
	return( 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 ] );
	}
	alert(urlTxt);
	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 + "/home/images/ui/icons/generic/icon_printer.gif' border='0' alt='' hspace='5' vspace='7' />" + tmpStr + "</a><br />" );
}
function pageToolsEmailPage(){
	tmpStr = "Email to a colleague";
	var emailpageParam = "\""+country+"\",\""+lang+"\",\""+css+"\",\""+sections+"\"";
	document.writeln( "<a href='#' onclick='emailpage(" + emailpageParam + ")' target='_self' title='" + tmpStr + "'><img src='" + domain_imagessl + "/home/images/ui/icons/generic/icon_email.gif' border='0' alt='' hspace='5' vspace='0' />" + tmpStr + "</a><br />" );
}
*/
function tabMenuEndBar(){
	document.writeln( "<div class='DropdownBorder'></div>");
}
function tabMenu(){
 var HOSTNAME = getPageName(window.location.host);
 var prefixURL = "http://" + HOSTNAME + "/home/" + lang + "/";
 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 = 'Our Services';
 document.writeln( "<div class='DropdownTitle'><a href='" + link( "/home/eng/wms_regional.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
 
 var menuLinks = ['Asia Pacific Region', 
      'China', 
      'Hong Kong',          //<!--3-->
      'Indo-China (Brunei, Cambodia, Laos, Myanmar & Vietnam)', 
      'Indonesia', 
      'Japan',       //<!--6--> 
      'Korea', 
      'Malaysia', 
      'Philippines',       //<!--9-->
      'Singapore', 
      'Taiwan', 
      'Thailand'];      //<!--12-->
 
 var menuURLs = [ '/home/eng/wms_regional.html', 
      '/home/eng/wms_cn.html', 
      '/home/eng/wms_hk.html',   //<!--3-->
      '/home/eng/wms_indocn.html', 
      '/home/eng/wms_id.html', 
      '/home/eng/wms_jp.html',   //<!--6-->
      '/home/eng/wms_kr.html', 
      '/home/eng/wms_my.html', 
      '/home/eng/wms_ph.html',    //<!--9-->
      '/home/eng/wms_sg.html', 
      '/home/eng/wms_tw.html', 
      '/home/eng/wms_th.html']; //<!--12-->
 
 if( menuLinks[ 0 ] != "" ) {
  document.writeln( "<ul>" );
 }
 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>" );    
 }
 if( menuLinks[ 0 ] != "" ) {
  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 = "Today's Challenges";
 document.writeln( "<div class='DropdownTitle'><a href='" + link( "#" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
 
 menuLinks = ['China/Korea - New Customs Duty Saving Opportunities',
'China - Valuation Ruling System Adopted',
'Customs Opportunities & Risks', 
     'Customs Business Strategy'];
 
 menuURLs = ['/home/eng/cn_kr_customs_duty_saving.html',
'/home/eng/cn_customs_valuation.html',
'/home/eng/wms_customs_opp_risks.html', 
     '/home/eng/wms_customs_trade_management.html'];
 
 if( menuLinks[ 0 ] != "" ) {
  document.writeln( "<ul>" );
 }
 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>" );
 }
 if( menuLinks[ 0 ] != "" ) {
  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 = "Publications";
 document.writeln( "<div class='DropdownTitle'><a href='" + link( "/home/eng/default_pub.html" ) + "' target='_self' title='" + tmpStr + "'>" + tmpStr + "</a></div>" );
 menuLinks = ['All Publications', 
      'China Bulletin (pdf)',          
      'Indonesia Bulletin (pdf)',      //<!--3-->
      'Philippines Bulletin (pdf)', 
      'Thailand Bulletin (pdf)',       
      'Trade Intelligence',            //<!--6--> 
      'Join Our Email Updates'];      
 
 menuURLs = [ '/home/eng/default_pub.html', 
      'javascript:void window.open("/home/eng/c&itnews_pdf.html")', 
      'javascript:void window.open("/home/eng/id_customs_news_pdf.html")',   //<!--3-->
      'javascript:void window.open("/home/eng/ph_customs_news_pdf.html")', 
      'javascript:void window.open("/home/eng/th_customs_news_pdf.html")', 
      '/home/eng/trade_int.html',   //<!--6-->
      '/home/eng/contactwebmaster.html']; 
 
 if( menuLinks[ 0 ] != "" ) {
  document.writeln( "<ul>" );
 }
 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>" );
 }
 if( menuLinks[ 0 ] != "" ) {
  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' >");
	document.writeln( "<input type=\"hidden\" name=\"opendocument\" value=\"1\">");  //to get it to put opendocument first!
	document.write("<INPUT TYPE=\"hidden\" NAME=\"ss\" VALUE=\"ocean\">");
	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=\"gx\">");
	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 + "/home/images/ui/tran.gif' width='1' height='1' border='0' alt='" + tmpStr + "' /></label>" );
	document.writeln( "<input accesskey='4' class='sp-q' id='searchText' name='searchText' onfocus='clearSearch();' value='"+ tmpStr + "' />" );
	if (""=="1"){
		document.writeln( "<a id='btnSubmitSearch' href='javascript:window.frmSearch.submit();' title=' " + tmpStr + " ' alt=' " + tmpStr + " '><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></a>" );
	}
	else {
		document.writeln( "<a id='btnSubmitSearch' href='javascript:window.frmSearch.submit();' title=' " + tmpStr + " ' alt=' " + tmpStr + " '><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></a>" );
	}
	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",
					  "     --------------------------     ",
"Afghanistan",
"Africa",
"Albania",
"Algeria",
"Angola",
"Antigua",
"Argentina",
"Aruba",
"Australia",
"Austria",
"Azerbaijan",
"Bahamas",
"Bahrain",
"Barbados",
"Belgium",
"Benin",
"Bermuda",
"Bolivia",
"Bosnia &amp; Herzegovina",
"Botswana",
"Brazil",
"Bulgaria",
"Burkina Faso",
"Burundi",
"Cambodia",
"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",
"Laos",
"Latvia",
"Lebanon",
"Liberia",
"Libya",
"Lithuania",
"Luxembourg",
"Macedonia",
"Madagascar",
"Malawi",
"Malaysia",
"Mali",
"Malta",
"Mauritania",
"Mauritius",
"Mexico",
"Middle East Region",
"Moldova",
"Monaco",
"Morocco",
"Mozambique",
"Namibia",
"Netherlands",
"Netherlands Antilles",
"New Caledonia",
"New Zealand",
"Nicaragua",
"Niger",
"Nigeria",
"Norway",
"Oman",
"Pakistan",
"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",
"Spain",
"Sri Lanka",
"St. Lucia",
"Sudan",
"Swaziland",
"Sweden",
"Switzerland",
"Tahiti",
"Taiwan",
"Tanzania",
"Thailand",
"Togo",
"Trinidad and Tobago",
"Tunisia",
"Turkey",
"Uganda",
"Ukraine",
"United Arab Emirates",
"United Kingdom",
"Uruguay",
"USA",
"Uzbekistan",
"Venezuela",
"Vietnam",
"West Bank &amp; Gaza",
"Zambia",
"Zimbabwe"];
					 
	var countryURLs = ["http://www.pwc.com",
					   "#",
"http://www.pwc.com/extweb/home.nsf/docid/fd3f82bb91144b138025728200415375",
"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/extweb/home.nsf/docid/cfef543d8ebc959a8525721f00534a08",
"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/e43ede7c1970a3448525721f0053428f",
"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.alleance.pwc.fr/index.html",
"http://www.pwc.com/extweb/home.nsf/docid/0210d2c75d31415380257187004f2595",
"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/802940a18369aaad8025728f0028354f",
"http://www.pwc.com/extweb/home.nsf/docid/995016900fbc2eb285256ebb0072c160",
"http://www.pwc.com/pg/eng/main/home/index.html",
"http://www.pwc.com/extweb/home.nsf/docid/6a63f13cc24998cc85256d3a005a0ae8",
"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/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/6a619d534766644e852572820069d0a2",
"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/extweb/home.nsf/docid/eff4867971d948e080256d71002ad54a",
"http://www.pwc.com/extweb/home.nsf/docid/e9794792728af1fc852570bc0059af55",
"http://www.pwc.com/extweb/home.nsf/docid/6350bb94be4cd9bb802570fa0037ac44",
"http://www.pwc.co.uk/",
"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/a9de63f679aac4918525724a005f0158",
"http://www.pwc.com/extweb/home.nsf/docid/29a36f49d89217e98525721f0053177e",
"http://www.pwc.com/extweb/home.nsf/docid/6350bb94be4cd9bb802570fa0037ac44",
"http://www.pwc.com/extweb/home.nsf/docid/6e0b014b83923a9680256dd3003abdb9",
"http://www.pwc.com/zw/eng/main/home/index.html"];
					   
	document.writeln( "<label for='countryDLL'><img src='" + domain_imagessl + "/home/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'>&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( "<a id='btnSubmitCountry' href='javascript:void go_country();' title=' " + tmpStr + " ' alt=' " + tmpStr + " '><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></a>" );
	}
	else {
		tmpStr = "Go" ;
		document.writeln( "<a id='btnSubmitCountry' href='javascript:void go_country();' title=' " + tmpStr + " ' alt=' " + tmpStr + " '><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></a>" );
	}
	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><a href='/home/eng/pressroom.html' target='_self' title='Press Room'>Press Room</a></li>" ) );
                document.writeln( lpnLink( "<li><a href='/home/eng/aboutusindex.html' target='_self' title='About Us'>About Us</a></li>" ) );
		document.writeln( lpnLink( "<li class='persistentTopNew'><a href='/home/eng/ias_contactus.html' target='_self' title='Contact Us'>Contact Us</a><ul><li><a href='/home/eng/ias_contactus.html' target='_self' title='Regional Network '>Regional Network</a></li> <li><a href='/home/eng/contactwebmaster.html' target='_self' title='Webmaster '>Webmaster</a></li></ul></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 + "/home/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 = 'International Assignments Asia Home';
	document.writeln( "<span class='territoryName'><a accesskey='1' href='" + link( "/home/eng/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='" + domain_imagessl + "/home/images/topnav/pwc.gif' alt='PricewaterhouseCoopers Logo' width='244' height='41' 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="2006"
	}
	document.writeln( "<div class='footerText'>" );
	document.write("&copy; "+year+" PricewaterhouseCoopers. 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 + "/home/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 + "/home/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 + "/home/images/ui/tran.gif' width='1' height='1' border='0' alt='Countries online' /></a> <!-- Countries online -->" );
}
function footerLinks(){
	document.writeln( "<div class='footerLinks'>" );
	if ( "Privacy" == "" ){
		//default privacy links
		document.writeln( "<span class='footerItem'><a href='" + link( "/gx/eng/main/privacy/index.html" ) + "' title='Privacy'>Privacy</a></span>" );
	} else {
		//override privacy links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/Extweb/aboutus.nsf/docid/0B7D5841DBFA29F28525701300728571" ) + "' title='Privacy'>Privacy</a></span>" );
	}
	if ( "Legal" == "" ){
		//default legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "/gx/eng/main/legal/index.html" ) + "' title='Legal'>Legal</a></span>" );
	} else {
		//override legal links
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/Extweb/aboutus.nsf/docid/55AD46183DF9500B85257013006FA934" ) + "' title='Legal'>Legal</a></span>" );
	}
	if ( "About Site Provider" == "" ){
		//default about provider
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/Extweb/home.nsf/docid/3E49B726C8AFB26785256D7100693215" ) + "' 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/Extweb/home.nsf/docid/F1361860A8676D9A8525702000471181" ) + "' title='About Site Provider'>About Site Provider</a></span>" );
	}
	if ( "Email Webmaster" == "" ){
		//default Email Webmaster
		document.writeln( "<span class='footerItem'><a href='" + link( "http://www.pwc.com/Extweb/NewCoWebPouch.nsf/Memo?OpenForm&cif=cu&c=gx&l=eng&pt=w" ) + "' title='Email Webmaster'>Email 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=gx&l=eng&pt=w" ) + "' title='Email Webmaster'>Email Webmaster</a></span>" );
	}
	if ( "Site Map" == "" ){
		//default site map
		document.writeln( "<span class='footerItem' id='footerItem1'><a href='" + link( "http://www.pwc.com/Extweb/home.nsf/docid/C1EC033FA11BBDEA85256F3900576F06" ) + "' 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/Extweb/home.nsf/docid/79CDE8F54ED4105085257015006E0F63" ) + "' title='Site Map'>Site Map</a></span>" );
	}
	//START generic footer links
	if( "" != "" ){
		var FooterText = [""];
		var FooterURL = [""];
		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()
