// JavaScript Document

function ShowPix (thispic) {
	var newwin=window.open("","ShowPix","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=640");
	newwin.document.writeln('<html><head><title>ShowPix</title>');
	newwin.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	newwin.document.writeln('<link rel="stylesheet" href="css/ijcji.css" type="text/css" />');
	newwin.document.writeln('</head><body class="ShowPix" >');
	newwin.document.writeln('<div class="img-shadow"><img src="' + thispic + '" border="0" id="image" ></div>');
	newwin.document.writeln('<p><button onClick="javascript:window.close()" >Close</button></p>');
	newwin.document.writeln('<p>&copy; 2003 .. 2009, Ian Bennett, all rights reserved.</p>');
//	newwin.document.writeln('<script type="text/javascript" src="js/checkImgSize.js"></script>');
//	newwin.document.writeln('<script type="text/javascript" language="JavaScript">checkImgSize();</script>');
	newwin.document.writeln('</body></html>');
	newwin.focus();
}
function showThumbNail (folder, pixname, descr) {
	document.write('<td align="CENTER" width="225" height="175">');
//	document.write('<div class="boxContainer"><div class="boxContent">');
	document.write('<div class="img-shadow">');
	document.write('<a href="javascript:void(0);" onClick="javascript:ShowPix(\'' + folder + '/' + pixname + '.jpg\');">');
	document.write('<img src="' + folder + '/' + pixname + '_tn.jpg" border="0" />');
	document.write('</a>');
	document.write('</div>');
//	document.write('</div></div>');
	document.write('<br><p class="txt">' + descr + '</p></TD>');
}

function showPanoTN (folder, pixname, descr) {
	document.write('<td align="CENTER" colspan="2">');
	document.write('<div class="img-shadow">');
	document.write('<a href="javascript:void(0);" onClick="javascript:showPanorama(\'' + folder + '/' + pixname + '.jpg\');">');
	document.write('<img src="' + folder + '/' + pixname + '_tn.jpg" border="0" />');
	document.write('</a></div>');
	document.write('<p class="txt">' + descr + '</p></TD>');
}
function showPanorama(thispic) {
	var newwin=window.open("","ShowPix","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=1100,height=500");
	newwin.document.writeln('<html><head><title>ShowPix</title>');
	newwin.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	newwin.document.writeln('<link rel="stylesheet" href="css/ijcji.css" type="text/css" />');
	newwin.document.writeln('</head><body class="ShowPix">');
	newwin.document.writeln('<div class="img-shadow"><img src="' + thispic + '" border="0" ></div>');
	newwin.document.writeln('<p><button onClick="javascript:window.close()" >Close</button>&nbsp;');
	newwin.document.writeln('&nbsp;&copy; 2003 .. 2009, Ian Bennett, all rights reserved.</p>');
	newwin.document.writeln('</body></html>');
	newwin.focus();
}


