// JScript File

var selected = "thumb_1"
var MyWin;

function thumbHover(id)
{
	if(id != selected) document.getElementById(id).className = "hovered";
}
//--------------------------------------------------------------------------

function thumbUnhover(id)
{
	if(id != selected) document.getElementById(id).className = "unselected";
} 
//--------------------------------------------------------------------------

function thumbSelect(id,src)
{
	if(id != selected)
	{	
		document.getElementById(id).className = "selected";
		document.getElementById(selected).className = "unselected";
		selected = id;
		document.getElementById("image").src = "/photos/" + src + ".jpg";
		document.getElementById("image_src").value = src;
	}
}
//--------------------------------------------------------------------------

function showEnlarged()
{
	var src = document.getElementById("image_src").value;
	showScrollImage(src);
}
//--------------------------------------------------------------------------

function showScrollImage(src)
{
	if(MyWin!=null)
	{
		MyWin.close;
		MyWin=null;
	}
	
	MyWin=window.open("/showphoto.asp?src=" + src,null,"height=600,width=600,status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=yes,scrollbars=yes");
	MyWin.focus();	
}
//--------------------------------------------------------------------------

function loadPic()
{
	var el = document.getElementById("image");
	window.resizeTo(el.width + 210,el.height + 140);		
}
//--------------------------------------------------------------------------


function showMap()
{
	if(MyWin!=null)
	{
		MyWin.close;
		MyWin=null;
	}
	
	MyWin=window.open("/GoogleMap.asp",null,"height=600,width=600,status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=yes,scrollbars=yes");
	MyWin.focus();	
}


function EnlargeImage(uri)
{
	if(MyWin!=null)
	{
		MyWin.close;
		MyWin=null;
	}
	
	MyWin=window.open("/showphoto.asp?src=" + uri,null,"height=600,width=600,status=no,toolbar=no,menubar=no,location=no,titlebar=no,resizable=yes,scrollbars=yes");
	MyWin.focus();	
}
