function txtWinOpen(fname) {   
	window.open(fname, 'newwindow', "width=605, height=600, status, scrollbars, resizable, screenX=20, screenY=40, left=20, top=20");
}

function galleryWinOpen(fname) {   
	window.open(fname, 'newwindow', "width=700, height=600, status, scrollbars, resizable, screenX=20, screenY=40, left=20, top=20");
}

function showPic(fileName, picTitle) {
	
	var htmlStr = '<!DOCTYPE html PUBLIC "-\/\/W3C\/\/DTD XHTML 1.0 Strict\/\/EN" "http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-strict.dtd"><html xmlns="http:\/\/www.w3.org\/1999\/xhtml"><head><meta http-equiv="Content-Type" content="text\/html; charset=iso-8859-1" \/><title>AJD Productions - ' + picTitle + '<\/title><link rel="stylesheet" href="CSS\/AJDcss_defaults.css" type="text\/css" \/><link rel="stylesheet" href="CSS\/AJDcss_headfoot.css" type="text\/css" \/><link rel="stylesheet" href="CSS\/AJDcss_popupcontent.css" type="text\/css" \/><script src="JS\/AJDjs_common.js" type="text\/javascript"><\/script><\/head><body onload="loadDate();">';
	htmlStr += '\n<table border="0" cellspacing="0" cellpadding="0"><tr><td>';
	htmlStr += '\n<table id="popupcontent_header" border="0" cellspacing="0" cellpadding="0"><tr><td class="smallest"><img src="images\/spacer.gif" class="nopx" height="51" width="1" \/><\/td><td id="page_buttons" class="biggest"><div class="center1">&quot;' + picTitle + '&quot;<\/div><\/td><\/tr><\/table>';
	htmlStr += '\n<\/td><\/tr><tr><td class="whitebkrnd">';
	htmlStr += '\n<table id="popupcontent" border="0" cellpadding="0" cellspacing="0"><tr><td><div class="center1"><img src="' + fileName + '" alt="" \/><\/div><div class="center1"><a href="javascript:window.close();">Close Window<\/a><\/div><\/td><\/tr><\/table>';
	htmlStr += '\n<\/td><\/tr><tr><td>';
	htmlStr += '\n<table id="page_footer" border="0" cellspacing="0" cellpadding="0"><tr><td class="smallest"><img src="images\/spacer.gif" class="nopx" alt="" width="1" height="87" \/><\/td><td id="footer" class="biggest bottom1"><div class="center1"><table style="width: 80%;" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="images\/ajd-logo.gif" width="83" height="63" alt="" \/><\/td><td class="footer_credits center1"><div class="center1"><strong>.:<\/strong>|&nbsp;AJD Productions&nbsp;-&nbsp;2002<span id="currentyear"><\/span>&nbsp;|<strong>:.<\/strong><\/div><div class="center1"><strong>.:<\/strong>|&nbsp;Created&nbsp;by&nbsp;Adam&nbsp;J.&nbsp;Deutschmann&nbsp;-&nbsp;2005&nbsp;|<strong>:.<\/strong><\/div><div class="center1"><em>If&nbsp;you\'re&nbsp;reading&nbsp;this,&nbsp;you\'ve&nbsp;scrolled&nbsp;past&nbsp;the&nbsp;good&nbsp;stuff<\/em><\/div><\/td><td><img src="images\/CS-logo.gif" width="83" height="63" alt="" \/><\/td><\/tr><\/table><\/div><\/td><\/tr><\/table>';
	htmlStr += '\n<\/td><\/tr><\/table>';
	htmlStr += '\n<\/body><\/html>';
	
	picWin = window.open("", 'picWin', "width=650, height=640, status, scrollbars, resizable, screenX=20, screenY=40, left=20, top=20");
	picWin.document.open();
	picWin.document.write(htmlStr);
	picWin.document.close();
	picWin.focus();
	return false;

}
