<!--
var NewWin="";
ImageLoc = "";
ImageCnt = 0;

function OpenViewer(Loc, NumImages){
	ImageLoc=Loc;
	ImageCnt=NumImages;
}

function ViewGroup(RegularLoc) {
	  var ImageLoc="";
	  if (RegularLoc=="no"){
		ImageLoc = ImageLoc;
	  }else{
		ImageLoc = "../graphics/gallery/" + ImageLoc;
	  }
        if (typeof NewWin.location == "undefined"){
                NewWin = window.open("imagecycle.html","","resizable,height=600,width=715");
        }else{
                if (NewWin.closed==true){NewWin = window.open("imagecycle.html","","resizable,height=600,width=715");}
                NewWin.focus();
        }

 }

function CloseWin(){
        if (typeof NewWin.location !=="undefined"){
                if (NewWin.closed !==true){
                        NewWin.close();
                }
        }
}
//-->
