//This can potentially be executed twice, once outside and inside the functin defined below, but it's ok

function LoadJsFile()
{

   
//header images   
var e=document.getElementById('header_img');
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/HeaderPicture_icq2go_prod1.jpg";
    e.alt="AOL Header Image";
 }

e=document.getElementById('ThankYouHeader_img'); 
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/HeaderPicture_icq2go_prod1.jpg";
    e.alt="AOL Header Image";
}

//background images
 e=document.getElementById('background_img');
if(e)
{
    e.src="{BackGroundImage}";
    e.alt="AOL Background Image";
 }

e=document.getElementById('ThankYouBackGround_img'); 
if(e)
{
    e.src="{ThankYouBackGroundImage}";
    e.alt="AOL Background Image";
}

//footer background color
e=document.getElementById('footer'); 
if(e)
{
    e.style.backgroundColor="#c9efe3";

}

e=document.getElementById('thank_you_footer'); 
if(e)
{
    e.style.backgroundColor="#c9efe3";

}


//footer links
e=document.getElementById('footer_links'); 
if(e)
{
    e.innerHTML="<span id='privacy_link' class='link'><a href='http://feedback.aol.com/policy' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Applicable Policy</a></span><span id='help_link' class='link'><a href='http://download.icq.com/help/help_cat.php?cat_id=3004' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Help </a></span><span id='contact_link' class='link'><a href='http://company.icq.com/info/contact_us.html' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Contact Us</a></span>";

}

e=document.getElementById('ThankYouFooterLink_Html'); 
if(e)
{
    e.innerHTML="<span id='privacy_link' class='link'><a href='http://feedback.aol.com/policy' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Applicable Policy</a></span><span id='help_link' class='link'><a href='http://download.icq.com/help/help_cat.php?cat_id=3004' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Help </a></span><span id='contact_link' class='link'><a href='http://company.icq.com/info/contact_us.html' target='_blank' onclick='OpenUrl(this.href); return false;' style='color:#0860A8'>Contact Us</a></span>";

}

//action buttons
e=document.getElementById('cancel_button'); 
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/CancelButtonImage_blue-cancel-button.png";
    e.alt="Cancel";
}

e=document.getElementById('submit_button'); 
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/SubmitButtonImage_blue-submit-button.png";
    e.alt="Submit";
}

e=document.getElementById('yes_button'); 
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/YesButtonImage_Yes_Image_English.gif";
    e.alt="Go to Opinion Place";
    e.title="Go to Opinion Place";
}

e=document.getElementById('no_button'); 
if(e)
{
    e.src="http://aol-clarabridge.vovici.net/ClarabridgeSite/ThemeImages/NoButtonImage_No_Image_English.gif";
    e.alt="Close";
    e.title="Close";
}

}

