// JavaScript Document

function enlarge(i)
{
	var i = enlarge.arguments[0];
	var imgpath= 'images/small/'+ myPhotos[i][0];
	var title = myPhotos[i][1];
	document.img1.src = imgpath;
  document.getElementById("photoTitle").innerHTML = title;
  currentPhoto = i;
}

function enlarge2(i)
{
	var i = enlarge2.arguments[0];
	var imgpath= 'images/small/'+ myPhotos2[i][0];
	var title = myPhotos2[i][1];
	document.img2.src = imgpath;
  document.getElementById("photoTitle2").innerHTML = title;
  currentPhoto = i;
}

function enlarge3(i)
{
	var i = enlarge3.arguments[0];
	var imgpath= 'images/small/'+ myPhotos3[i][0];
	var title = myPhotos3[i][1];
	document.img3.src = imgpath;
  document.getElementById("photoTitle3").innerHTML = title;
  currentPhoto = i;
}




function popupImg()
{
	var popupImage = new Image();
	var imgpath = 'images/large/'+ myPhotos[currentPhoto][0];
	var title = myPhotos[currentPhoto][1];
	var style = myPhotos[currentPhoto][2];
	popupImage.src = imgpath;
	var attributes = "";
	var width;
	var height;
	if (myPhotos[currentPhoto][2] == "port")
	{
		attributes = 'width='+popupPort[0]+'px, height='+popupPort[1]+'px';
		width = popupPort[0];
		height = popupPort[1];
	}
	if (myPhotos[currentPhoto][2] == "land")
	{
		attributes = 'width='+popupLand[0]+'px, height='+popupLand[1]+'px';
		width = popupLand[0];
		height = popupLand[1];
	}
	
	attributes += ", resizable=yes, scrollbars=yes";
	var url = "popUpWindow.html?&"+imgpath+"&"+title+"&"+width+"&"+height+"&";
	window.open(url,"popup",attributes);
	
}

function popupImg2()
{
	var popupImage = new Image();
	var imgpath = 'images/large/'+ myPhotos2[currentPhoto][0];
	var title = myPhotos2[currentPhoto][1];
	var style = myPhotos2[currentPhoto][2];
	popupImage.src = imgpath;
	var attributes = "";
	var width;
	var height;
	if (myPhotos2[currentPhoto][2] == "port")
	{
		attributes = 'width='+popupPort[0]+'px, height='+popupPort[1]+'px';
		width = popupPort[0];
		height = popupPort[1];
	}
	if (myPhotos[currentPhoto][2] == "land")
	{
		attributes = 'width='+popupLand[0]+'px, height='+popupLand[1]+'px';
		width = popupLand[0];
		height = popupLand[1];
	}
	
	attributes += ", resizable=yes, scrollbars=yes";
	var url = "popUpWindow.html?&"+imgpath+"&"+title+"&"+width+"&"+height+"&";
	window.open(url,"popup",attributes);
	
}

function popupImg3()
{
	var popupImage = new Image();
	var imgpath = 'images/large/'+ myPhotos3[currentPhoto][0];
	var title = myPhotos3[currentPhoto][1];
	var style = myPhotos3[currentPhoto][2];
	popupImage.src = imgpath;
	var attributes = "";
	var width;
	var height;
	if (myPhotos3[currentPhoto][2] == "port")
	{
		attributes = 'width='+popupPort[0]+'px, height='+popupPort[1]+'px';
		width = popupPort[0];
		height = popupPort[1];
	}
	if (myPhotos3[currentPhoto][2] == "land")
	{
		attributes = 'width='+popupLand[0]+'px, height='+popupLand[1]+'px';
		width = popupLand[0];
		height = popupLand[1];
	}
	
	attributes += ", resizable=yes, scrollbars=yes";
	var url = "popUpWindow.html?&"+imgpath+"&"+title+"&"+width+"&"+height+"&";
	window.open(url,"popup",attributes);
	
}

