<!--
//  Conflict_v3 javscript document
//  Last updated: 07/09/05	
//	Updated by: Shane


//Screenshot functions
function ShowPic(num){
  document.getElementById('largeScreen').src = imgArray[num].toString();
  document.getElementById("picID").innerHTML = num;
  document.getElementById("totalPics").innerHTML = imgArray.length-1;
}

function prevPic() {
	if (counter > 1) {
		counter--;
		//document.getElementById("picID").innerHTML = counter;
		//document.getElementById("totalPics").innerHTML = imgArray.length-1;
	} else {
		counter = imgArray.length-1;
	}
	ShowPic(counter);
}

function nextPic() {
	if (counter < (imgArray.length-1)) {
		counter++;
		//document.getElementById("picID").innerHTML = counter;
		//document.getElementById("totalPics").innerHTML = imgArray.length-1;
	} else {
		counter = 1;	
	}
	ShowPic(counter);
}

//Flash Window
function openFWin(url, x, y) {

	newWindow=window.open(url,"flashwin", "width="+ x +",height="+ y +",toolbar=no,scrollbars=no,location=no,statusbar=no,status=no");
	newWindow.focus();
	
}

function OpenWindow(url,x,y){
	newWindow = window.open(url,"legalWin", "width="+ x +",height="+ y +",toolbar=no,scrollbars=yes,location=no,statusbar=no");
	newWindow.focus();
}
-->
