<!--
var pics = new Array("pictures/baseball.html","pictures/japan.html","pictures/manila.html","pictures/hongkong.html","pictures/australia.html","pictures/nice.html");
var count = 1;
var Bcount = 7;
var picIndex = 0;
function next() {
 count++;
 if (count == "1") {
  parent.picture.location.href = pics[0];
  picIndex = 1;
 }
 if (count == "2") {
  parent.picture.location.href = pics[1];
  picIndex = 2;
 }
 if (count == "3") {
  parent.picture.location.href = pics[2];
  picIndex = 3;
 }
 if (count == "4") {
  parent.picture.location.href = pics[3];
  picIndex = 4;
 }
 if (count == "5") {
  parent.picture.location.href = pics[4];
  picIndex = 5;
 }
 if (count == "6") {
  parent.picture.location.href = pics[5];
  picIndex = 6;
 }
 if (count == "7") {
  count = 1;
  parent.picture.location.href = pics[0];
  picIndex = 1;
 }
}
function previous() {
 if (picIndex == "1") {
  parent.picture.location.href = pics[5];
  count = 0;
 }
 if (picIndex == "2") {
  parent.picture.location.href = pics[0];
  count = 1;
 }
 if (picIndex == "3") {
  parent.picture.location.href = pics[1];
  count = 2;
 }
 if (picIndex == "4") {
  parent.picture.location.href = pics[2];
  count = 3;
 }
 if (picIndex == "5") {
  parent.picture.location.href = pics[3];
  count = 4;
 }
 if (picIndex == "6") {
  parent.picture.location.href = pics[4];
  count = 5;
 }
 if (picIndex == "0") {
  parent.picture.location.href = pics[5];
  count = 6;
 }  
}
function changeCount(newCount) {
 count = newCount;
}
//-->
