function accion() {
window.status = 'Machu Picchu Spanish School' ;
if (IE) alert('   Volunteering in Peru\n   All Rights Reserved\n       Cusco - Peru');
return ;
}



function validara(forma) {
if ((forma.firstnamea.value == null) || (forma.firstnamea.value=="")) {
 alert("Please enter your first name");
 forma.firstnamea.focus();
 return false;
}

if ((forma.lastnamea.value == null) || (forma.lastnamea.value=="")) {
 alert("Please enter your last name");
 forma.lastnamea.focus();
 return false;
}

if ((forma.emaila.value == null) || (forma.emaila.value=="") || (forma.emaila.value.indexOf("@") == -1)) {
 alert("Please enter a valid address");
 forma.emaila.focus();
 return false;
}		

if (!forma.sexa[0].checked && !forma.sexa[1].checked){
 alert("Please select your sex");
 return false;
}

op = forma.countrya.selectedIndex;
opcion = forma.countrya.options[op].value;
if (opcion=="Not Select") {
   alert('Please select your country');
   return false;
}

if ((forma.messagea.value == null) || (forma.messagea.value=="")) {
 alert("Please enter your message");
 forma.messagea.focus();
 return false;
}
return true;
}



{
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array();
var Pic1 = new Array();
// to add more /images, just continue
// the pattern, adding to the array below

Pic[0] = '/images/top02.jpg'
Pic[1] = '/images/top03.jpg'
Pic[2] = '/images/top04.jpg'
Pic[3] = '/images/top05.jpg'
Pic[4] = '/images/top06.jpg'
Pic[5] = '/images/top01.jpg'

Pic1[0] = '/images/top07.jpg'
Pic1[1] = '/images/top11.jpg'
Pic1[2] = '/images/top12.jpg'
Pic1[3] = '/images/top08.jpg'
Pic1[4] = '/images/top09.jpg'
Pic1[5] = '/images/top10.jpg'

// 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];
}

var tt;
var jj = 0;
var pp = Pic1.length;
var preLoad1 = new Array();
for (ii = 0; ii < pp; ii++) {
preLoad1[ii] = new Image();
preLoad1[ii].src = Pic1[ii];
}


function cargarimagen1() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('cargarimagen1()', slideShowSpeed);
}


function cargarimagen2() {
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 = preLoad1[jj].src;
if (document.all) {
document.images.SlideShow1.filters.blendTrans.Play();
}
jj = jj + 1;
if (jj > (pp - 1)) jj = 0;
tt = setTimeout('cargarimagen2()', slideShowSpeed);
}


//fin
}