<!-- Hide script from clueless browsers
function detailWin(which,session)
{
  if ( which == "photo" ) {
	 x = 100; y = 130;
	 var fn = "/ntid/vp/techsym/photos/"+session+".jpg";
	 //var fso = new ActiveXObject("Scripting.FileSystemObject");
	 //fileBool = fso.FileExists(fn);
	 fileBool = true;
	 win=window.open("","PHOTO", 'resizable=0,location=0,directories=0,status=0,menubar=1,scrollbars=0,toolbar=0,width='+x+',height='+y);
	 win.document.open("text/html", "replace");
	 win.document.write("<html><title></title><body bgcolor='#ffffff' LEFTMARGIN='0' TOPMARGIN='0' MARGINWIDTH='0' MARGINHEIGHT='0'>");
	 if ( fileBool ) {
		win.document.write("<img src='"+fn+"' alt='Photo'>");
		win.document.write("<center>");
		win.document.write("<a href='javascript:window.close()'>Close</a>");
		win.document.write("</center>");
	 } else {
		win.document.write("No photo on file...");
	 }
	 win.document.write("</body></html>");
  } else {
	 x = 300; y = 400;
	 win=window.open("","Session", 'resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,toolbar=0,width=x,height=y');
  }
  win.document.close();
  win.focus();
//alert(win.location.href);
}
function detailWinClose()
{
	if (win != null && win.open) win.close();
}
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// =======================================
// set the following variables
// =======================================
// Set speed (milliseconds)
var speed = 1000
// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below
Pic[0] = '1.jpg'
Pic[1] = '2.jpg'
Pic[2] = '3.jpg'
Pic[3] = '4.jpg'
Pic[4] = '5.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]
}
function runSlideShow(){
   document.images.SlideShow.src = preLoad[j].src
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', speed)
}
// End of script hiding -->
