// JavaScript Document
        // Array to hold alternative strings

function popUp2(URL, WINNAME) {
     var x = (screen.width-400)/2;
	 var y = (screen.height-350)/2;
	 window.open(URL, WINNAME, "scrollbars=1,location=0,resizable=1,width=480,height=400,left="+x+",top="+y+"");
} 

function CloseWindow() { 
        window.close(); 
return true; 
} 
	
function goto_URL(object) {
if ( object.options[object.selectedIndex].value != 'x')  window.open(object.options[object.selectedIndex].value, 'bookie');
}


function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad[j].src;
document.images.SlideShow1.title = Title[j];
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j = j + 1;
slideShowSpeed=2500; 
 
if (j > (p - 1)) j = 0;

t = setTimeout('runSlideShow1()', slideShowSpeed);
}
//  End -->

function popUp2(URL, WINNAME) {
     var x = (screen.width-400)/2;
	 var y = (screen.height-350)/2;
	 window.open(URL, WINNAME, "scrollbars=1,location=0,resizable=1,width=480,height=400,left="+x+",top="+y+"");
} 

function RunFoo()
{
   document.write('<object type="application/x-shockwave-flash" data="./images/taxicharitylogo.swf" width="750" height="130" />\n');
   document.write('<param name="movie" value="images/taxicharitylogo.swf" /></object>\n');
}


// JavaScript Document
<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 1500;
// Duration of crossfade (seconds)
var crossFadeDuration = 2;
// Specify the image files
var Pic = new Array();

var Title = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/taxichildren2.jpg'
Pic[1] = 'images/taxichildren3.jpg'
Pic[2] = 'images/taxichildren4.jpg'
Pic[3] = 'images/taxichildren5.jpg'
Pic[4] = 'images/taxichildren6.jpg'


Title[0] = 'Children at Camelot'
Title[1] = 'Children'
Title[2] = 'Children with Policeman'
Title[3] = 'Children'
Title[4] = 'Children in a taxi'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow1() {
if (document.all) {
document.images.SlideShow1.style.filter="blendTrans(duration=2)";
document.images.SlideShow1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow1.filters.blendTrans.Apply();
}
document.images.SlideShow1.src = preLoad[j].src;
document.images.SlideShow1.title = Title[j];
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
j = j + 1;
slideShowSpeed=2500; 
 
if (j > (p - 1)) j = 0;

t = setTimeout('runSlideShow1()', slideShowSpeed);
}


//  End -->