function showphoto(a,n) {
	document.getElementById("photoshowarea").src = "photo/framed/fr_" + a + "_" + n + ".jpg";
}

function preloadphoto(a,n){
	var preImages = new Array();
	for (i = 0; i < n; i++) { 
		preImages[i] = new Image()
		preImages[i].src = "photo/framed/fr_" + a + "_" + (i+1) + ".jpg";
	}	
}

function showtnpage(z,a,b){
	tmp = ""
	for(i=b;i>=a;i--) {
//	for(i=a;i<=b;i++) {
		tmp += "<img src=\"photo/tn/tn_" + z + "_" + i + ".jpg\" class=\"tnn\" onmouseover=\"showphoto('" + z + "'," + i + ")\">";
	}
	document.getElementById("tnpage_1").innerHTML = tmp;
}

function showtn(z, a){
  limit = a.length;
	tmp = ""
	tnn = "tnn";
	if ((z == 'y') || (z == 'z')) tnn = "tnnb";
  for(i=0;i<limit;i++) {
		tmp += "<img src=\"photo/tn/tn_" + z + "_" + a[i] + ".jpg\" class=\""+tnn+"\" onmouseover=\"showphoto('" + z + "'," + a[i] + ")\">";
  }
	document.getElementById("tnpage_1").innerHTML = tmp;
}

function showtno(z, a){
  limit = a.length;
	tmp = ""
	tnn = "tn";
	if ((z == 'y') || (z == 'z')) tnn = "tnnb";
  for(i=0;i<limit;i++) {
		tmp += "<img src=\"photo/tn/tn_" + z + "_" + a[i] + ".jpg\" class=\""+tnn+"\" onmouseover=\"showphoto('" + z + "'," + a[i] + ")\"> ";
  }
	document.getElementById("tnpage_1").innerHTML = tmp;
}

function showtnl(z, a, u){
  limit = a.length;
	tmp = ""
	tnn = "tnn";
	if ((z == 'y') || (z == 'z')) tnn = "tnnb";
	if (z == 't') tnn = "tn64";
  for(i=0;i<limit;i++) {
		tmp += "<img src=\"photo/tn/tn_" + z + "_" + a[i] + ".jpg\" class=\""+tnn+"\" onmouseover=\"showphotol('" + z + "'," + a[i] + ",'"+(u[a[i]]?u[a[i]]:'')+"')\">";
  }
	document.getElementById("tnpage_1").innerHTML = tmp;
}

showphotolstate = 0;
function showphotol(a,n, url) {
	if (url == '') {
	  if (showphotolstate == 1)
			document.getElementById("photoshowarealink").innerHTML = '<img src="photo/framed/fr_'+a+'_'+n+'.jpg" id="photoshowarea" align="center">';
		else
			document.getElementById("photoshowarea").src = "photo/framed/fr_" + a + "_" + n + ".jpg";
		showphotolstate = 0;
	} else {
	  if (showphotolstate == 1) {
			document.getElementById("photoshowarealink").innerHTML = '<a href="'+url+'" target="_blank"><img border="0" src="photo/framed/fr_'+a+'_'+n+'.jpg" id="photoshowarea" align="center"></a>';
	  } else {
			document.getElementById("photoshowarealink").innerHTML = '<a href="'+url+'" target="_blank"><img border="0" src="photo/framed/fr_'+a+'_'+n+'.jpg" id="photoshowarea" align="center"></a>';
		}
		showphotolstate = 1;
	}
}
