// JavaScript Document

function show_title_image(){
var charstr, lefturl
/*var str, righturl*/
/*str=window.location;*/
charstr=String(window.location);
lefturl=charstr.lastIndexOf("/");
/*righturl=charstr.lastIndexOf(".html");*/
url=charstr.substr(lefturl+1,1);
/*url=charstr.substring(lefturl+1,lefturl+1);*/
/* document.write(url); */
switch(url)
{
case 'l':
/*case 'landquote':*/
/*case 'landinformation':*/
/*case 'landspecials':*/
  document.getElementById('titlebar').src ="Images/Disneyland_logo_May10LandscapeBanner.png";
  break;
case 'w':
/*case 'wdwinformation':*/
/*case 'wdwspecials':*/
/*case 'worldquote':*/
  document.getElementById('titlebar').src ="Images/Disneyworld_logo_May10Landscape.png";
  break;
case 'c':
/*case 'cruisequote':*/
/*case 'cruisespecials':*/
/*case 'cruiseinformation2011':*/
  document.getElementById('titlebar').src ="Images/Disney_Cruise_logo_May10LandscapeBanner.png";
  break;
case 'a':
/*case 'abdinformation':*/
/*case 'abdspecials':*/
/*case 'abdquote':*/
  document.getElementById('titlebar').src ="Images/Adventures_by_Disney_May10_Banner.png";
  break;
case 'F':
/*case 'FGTPackages':*/
  document.getElementById('titlebar').src ="Images/Title_Bar_Blue_Backgroundpng960w134h.png";
  break;
case 'T':
/*case 'Thankyou':*/
  document.getElementById('titlebar').src ="Images/Title_Bar_Blue_Backgroundpng960w134h.png";
  break;
  case 'm':
/*case 'micechat':*/
  document.getElementById('titlebar').src ="Images/Title_Bar_Mice_Chatpng960w134h.png";
  break;
 }}
