var COLUMNS20100809 = 1;

var THUMB_EXT_20100809 = "_thm.jpg";
var NORML_EXT_20100809 = ".jpg";

var IMGVIEW_HTML_HEADER_20100809 = '<?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_20100809 = '</a></p><p class="center"><span class="blue2">';
var IMGVIEW_HTML_DATE_20100809 = ' </span><span class="green">';
var IMGVIEW_HTML_CENTER_20100809 = ' </span><span class="regtext">';
var IMGVIEW_HTML_END_20100809 = '</span></p></td></tr></table></body></html>';


var arImageNames20100809 = [  
  "20100809"
];


var arImageInfo20100809 = new Array;

arImageInfo20100809["20100809"] = new Array;
arImageInfo20100809["20100809"]["width"] = 800;
arImageInfo20100809["20100809"]["height"] = 495;
arImageInfo20100809["20100809"]["title"] = "";
arImageInfo20100809["20100809"]["date"] = "";
arImageInfo20100809["20100809"]["story"] = "";

function openPic20100809(id) {
	wHeight20100809 = arImageInfo20100809[id]["height"] + 80;
	wWidth20100809 = arImageInfo20100809[id]["width"] + 45;
	

	if(wHeight20100809 > screen.availHeight) {
		wHeight20100809 = screen.availHeight - 50;
	}
	if(wWidth20100809 > screen.availWidth) {
	  wWidth20100809 = screen.availWidth-20;
	}


  sWindowOptions20100809 = "left=10,top=10,toolbar=no,status=no,menubar=no,location=no,scrollbars,resizable,height=" 
		+ wHeight20100809 + ",width=" + wWidth20100809;


  imageView20100809 = window.open("","viewer",sWindowOptions20100809);


	imageView20100809.document.open("text/html");
	imageView20100809.document.write(IMGVIEW_HTML_HEADER_20100809);
	imageView20100809.document.write('<img src="shared/pics/notes/',id,NORML_EXT_20100809,'" class="border" />');
	imageView20100809.document.write(IMGVIEW_HTML_TITLE_20100809);
	imageView20100809.document.write(arImageInfo20100809[id]["title"]);
	imageView20100809.document.write(IMGVIEW_HTML_DATE_20100809);
	imageView20100809.document.write(arImageInfo20100809[id]["date"]);
	imageView20100809.document.write(IMGVIEW_HTML_CENTER_20100809);
	imageView20100809.document.write(arImageInfo20100809[id]["story"]);
	imageView20100809.document.write(IMGVIEW_HTML_END_20100809);


	imageView20100809.document.close();
}

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

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

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