// JScript source code
function ShowPhoto(pic){
	url = "showphoto.htm?"+pic;
	params = "width=10,height=10,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=10,left=10";
	win = window.open(url, "winPopUp", params);
	win.focus();
	}

function ShowPhoto2(pic){
	url = "showphoto.htm?"+pic;
	params = "width=10,height=10,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=200,left=200";
	win = window.open(url, "winPopUp", params);
	win.focus();
	}

function ShowText(url){
	params = "height=600,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes, resizable=yes, top=50,left=50";
	win = window.open(url, "winPopUp", params);
	win.focus();
	}
	
function SwitchVis(id){
	//var hol1 = document.getElementById("hol1");
	var hol2 = document.getElementById("hol2");
	//hol1.style.display ="none";
	hol2.style.display ="none";
	if(id==1){
		hol1.style.display ="block";
		}else{
		hol2.style.display ="block";
		}
	}
	
function ShowInfo(x)
{
	var Info = document.getElementById("info"+x);
	
	if(Info.style.display =="block")
	{
	    Info.style.display ="none";
	}
	else{
		Info.style.display ="block";
	}
}

