// <!--
strIPath = "Images/"
function btnImg(imgName, action){
	if(action=="On"){
		document.images[imgName].src = "images/doton.gif"}
	else{
		document.images[imgName].src = "images/dotoff.gif"}
}
arMaps = new Array("Map0.jpg","Map1.jpg","Map2.jpg","Map3.jpg","Map4.jpg")
function mapImg(action){
	var imgCnt = document.frmMapImg['txtImg'].value
	if(action=="I"){
		if(imgCnt>0){
			imgCnt = imgCnt - 1
			document.frmMapImg['txtImg'].value = imgCnt}}
	if(action=="O"){
		if(imgCnt<4){
			imgCnt++
			document.frmMapImg['txtImg'].value = imgCnt}}
	document.images['mapImg'].src = "images/" + arMaps[imgCnt]
}
function winPopUp(x){
	var hWnd=window.open(x,"PopUpWn","width=500,height=300,resizable=no,scrollbars=yes,status=no,toolbar=no,top=50,left=50");
}
// -->