var COLUMNS20100807 = 1;

var THUMB_EXT_20100807 = "_thm.jpg";
var NORML_EXT_20100807 = ".jpg";

var IMGVIEW_HTML_HEADER_20100807 = '<?xml version="1.0" encoding="iso-8859-1"?>' + 
	'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' + 
	'<html xmlns="http://www.w3.org/1999/xhtml">' + 
	'<head><title>Image Viewer</title>' +
	'<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />' +
	'<link rel="stylesheet" type="text/css" href="styles.css" />' +
	'<style type="text/css">body {text-align:center;}</style></head>' +
	'<body><table style="margin-left:auto;margin-right:auto"><tr><td class="topsuck"><p class="center"><a href="javascript:window.close();">';
var IMGVIEW_HTML_TITLE_20100807 = '</a></p><p class="center"><span class="blue2">';
var IMGVIEW_HTML_DATE_20100807 = ' </span><span class="green">';
var IMGVIEW_HTML_CENTER_20100807 = ' </span><span class="regtext">';
var IMGVIEW_HTML_END_20100807 = '</span></p></td></tr></table></body></html>';


var arImageNames20100807 = [  
  "20100807"
];


var arImageInfo20100807 = new Array;

arImageInfo20100807["20100807"] = new Array;
arImageInfo20100807["20100807"]["width"] = 800;
arImageInfo20100807["20100807"]["height"] = 495;
arImageInfo20100807["20100807"]["title"] = "";
arImageInfo20100807["20100807"]["date"] = "";
arImageInfo20100807["20100807"]["story"] = "";

function openPic20100807(id) {
	wHeight20100807 = arImageInfo20100807[id]["height"] + 80;
	wWidth20100807 = arImageInfo20100807[id]["width"] + 45;
	

	if(wHeight20100807 > screen.availHeight) {
		wHeight20100807 = screen.availHeight - 50;
	}
	if(wWidth20100807 > screen.availWidth) {
	  wWidth20100807 = screen.availWidth-20;
	}


  sWindowOptions20100807 = "left=10,top=10,toolbar=no,status=no,menubar=no,location=no,scrollbars,resizable,height=" 
		+ wHeight20100807 + ",width=" + wWidth20100807;


  imageView20100807 = window.open("","viewer",sWindowOptions20100807);


	imageView20100807.document.open("text/html");
	imageView20100807.document.write(IMGVIEW_HTML_HEADER_20100807);
	imageView20100807.document.write('<img src="shared/pics/notes/',id,NORML_EXT_20100807,'" class="border" />');
	imageView20100807.document.write(IMGVIEW_HTML_TITLE_20100807);
	imageView20100807.document.write(arImageInfo20100807[id]["title"]);
	imageView20100807.document.write(IMGVIEW_HTML_DATE_20100807);
	imageView20100807.document.write(arImageInfo20100807[id]["date"]);
	imageView20100807.document.write(IMGVIEW_HTML_CENTER_20100807);
	imageView20100807.document.write(arImageInfo20100807[id]["story"]);
	imageView20100807.document.write(IMGVIEW_HTML_END_20100807);


	imageView20100807.document.close();
}

document.writeln('<table border="0" cellspacing="0"><tr>');

for(i=0;i<arImageNames20100807.length;i++) {
	if( i % COLUMNS20100807 == 0 && i > 0 ) {
	  document.writeln('</tr><tr>');
	}
	
	sLinkName20100807 = "javascript:openPic20100807('" + arImageNames20100807[i] + "');";
	
	document.writeln('<td><p class="center">',
		'<a href="',sLinkName20100807,'")>',
		'<img src="shared/pics/notes/',arImageNames20100807[i],THUMB_EXT_20100807,'" class="border" /></a></p></td>');
}

document.writeln('</tr></table>');
