function openImg(imgFile){
	
	MyWindow = window.open("", "WebWizard1", "status=no,scrollbars=no,resizable=yes,Left=200,Top=200, Height=700, Width=700");
	MyWindow.focus();
	
	MyWindow.document.open();
	MyWindow.document.writeln('<html><head><title>View Image</title></head><body onload="scale_window()" topmargin="0" leftmargin="0">');
	MyWindow.document.writeln('<form name="viewImg">');
	MyWindow.document.writeln('<a href="javascript:window.close()"><img src="' + imgFile + '" name="imgName" border="0" alt="Click to close"></a>');
	MyWindow.document.writeln('</form>');
	MyWindow.document.writeln('<script language="javascript">');
	MyWindow.document.writeln('function scale_window(){')
	MyWindow.document.writeln('var ImgHeight = viewImg.imgName.height;')
	MyWindow.document.writeln('var ImgWidth = viewImg.imgName.width;')
	MyWindow.document.writeln('if (((ImgHeight > 0) || (ImgWidth > 0)) && (ImgHeight < 500 ))')
	MyWindow.document.writeln('window.resizeTo(ImgWidth, ImgHeight + 50);')
	MyWindow.document.writeln('}');
	MyWindow.document.writeln('</' + 'script>');
	MyWindow.document.writeln('</body></html>');
	MyWindow.document.close();
}
//
// Image roll-over functions
//

function swap_img_restore() {
  if(document.old_name) {
    document.images[document.old_name].src = document.old_src;
    document.old_name = null;
    document.old_src = null;
  }
}

function preload_images() {
  var image_array = new Array(preload_images.arguments.length)
  for(i = 0; i < image_array.length; i++) {
    image_array[i] = new Image();
    image_array[i].src = preload_images.arguments[i];
  }
}

function swap_image(name, src) {
  swap_img_restore();
  document.old_name = name;
  document.old_src = document.images[name].src;
  document.images[name].src = src;
}

//
// Map Popup Window functions
//

function openMap(Country,TourName,TourID) { 
	open('CountryMap.asp?' + Country,'CountryMap','width=595,height=450,status=yes,menubar=no,scrollable=no,resizable=no,scrollbars=no'); 
}
