<!--
/***************************************************************************/
function picOnly(picFile)
{	picWin = window.open('', 'pic', 'toolbar=no, directories=no, width=100, height=100');
	picWin.document.write('<html>\n');
	picWin.document.write('<head>\n');
	picWin.document.write('<title> &copy;  &nbsp;  Sam Rogers </title>\n');
   
	picWin.document.write('<script language="JavaScript">\n');
	picWin.document.write("{  IE5=NN4=NN6=false\n");
	picWin.document.write("   if(document.all)IE5=true;\n");
	picWin.document.write("   else if(document.getElementById)NN6=true\n");
	picWin.document.write("   else if(document.layers)NN4=true\n");
	picWin.document.write("   function autoSize()\n");
	picWin.document.write("   {  if(IE5) self.resizeTo(document.images[0].width * 1.01,document.images[0].height *1.01 +25)\n");
	picWin.document.write("   	else if(NN6) self.sizeToContent()\n");
	picWin.document.write("   	else top.window.resizeTo(document.images[0].width *1.01 +10,document.images[0].height *1.01 +25)\n");
	picWin.document.write("   	self.focus()\n");
	picWin.document.write("   }\n");
	picWin.document.write("}\n");
	picWin.document.write('</script>\n');
	picWin.document.write('</head>\n\n');
   
	picWin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=javascript:autoSize();>\n');
	picWin.document.write('<table>\n');
	picWin.document.write("<tr><td><img src='"+picFile+"' border=0'></td></tr>\n");
	picWin.document.write('</table>\n');
	picWin.document.write('</body>\n');
	picWin.document.write('</html>\n');
	picWin.document.close();
}   	
/***************************************************************************/
function picShort(picFile, picTitle) /*, nWide, nHigh)*/
{	picWin = window.open('', 'pic', 'toolbar=no, directories=no, width=100, height=100');
	picWin.document.write('<html>\n');
	picWin.document.write('<head>\n');
	picWin.document.write('<title>' + picTitle + '</title>\n');
	   
	picWin.document.write('<script language="JavaScript">\n');
	picWin.document.write("{  IE5=NN4=NN6=false\n");
	picWin.document.write("   if(document.all)IE5=true;\n");
	picWin.document.write("   else if(document.getElementById)NN6=true\n");
	picWin.document.write("   else if(document.layers)NN4=true\n");
	picWin.document.write("   function autoSize()\n");
	picWin.document.write("   {  if(IE5) self.resizeTo(document.images[0].width,document.images[0].height)\n");
	picWin.document.write("   	else if(NN6) self.sizeToContent()\n");
	picWin.document.write("   	else top.window.resizeTo(document.images[0].width,document.images[0].height)\n");
	picWin.document.write("   	self.focus()\n");
	picWin.document.write("   }\n");
	picWin.document.write("}\n");
	picWin.document.write('</script>\n');
	picWin.document.write('</head>\n\n');
	   
	picWin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=javascript:autoSize();>\n');
	picWin.document.write('<table>\n');
	picWin.document.write("<tr><td><img src='"+picFile+"' border=0 alt='"+picTitle+"'></td></tr>\n");
	picWin.document.write('</table>\n');
	picWin.document.write('</body>\n');
	picWin.document.write('</html>\n');
	 picWin.document.close();	
}
/***************************************************************************/
function picLong(nFile, nCaption, nCopy, nWide, nHigh)
{	if(nWide <= 150)nWide=150;
	if(nHigh <= 150)nHigh=150;
	picWin = window.open('','Demo','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+ nWide +',height='+nHigh);
	picWin.document.write('<html>\n\n');
	picWin.document.write('<head>\n');
	picWin.document.write('<title>' + nCaption + '&copy;' + nCopy + '</title>\n');
	picWin.document.write('<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">\n');
	picWin.document.write('<meta NAME="Author" CONTENT="Sam Rogers">\n');
	picWin.document.write('<link REL=STYLESHEET HREF="http://www.scrgeek.com/cssPages.css" TYPE="text/css">\n\n');
	picWin.document.write('<script language="JavaScript">\n');
	picWin.document.write("{  IE5=NN4=NN6=false\n");
	picWin.document.write("   if(document.all)IE5=true;\n");
	picWin.document.write("   else if(document.getElementById)NN6=true\n");
	picWin.document.write("   else if(document.layers)NN4=true\n");
	picWin.document.write("   function autoSize()\n");
	picWin.document.write("   {  if(IE5) self.resizeTo(document.images[0].width+10,document.images[0].height+20)\n");
	picWin.document.write("   	else if(NN6) self.sizeToContent()\n");
	picWin.document.write("   	else top.window.resizeTo(document.images[0].width,document.images[0].height+20)\n");
	picWin.document.write("   	self.focus()\n");
	picWin.document.write("   }\n");
	picWin.document.write("}\n");
	picWin.document.write('</script>\n');
	picWin.document.write('</head>\n\n');
	   
	picWin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=javascript:autoSize();>\n');
	picWin.document.write('<center>\n');
	picWin.document.write('<table cellpadding=0 cellspacing=0 border=0>\n');
	picWin.document.write("<tr><td><img src='"+nFile+"' border=0 alt='"+nCaption+"'></td></tr>\n");
	picWin.document.write('</table>\n');
	picWin.document.write('</center>\n');
	picWin.document.write('</body>\n');
	picWin.document.write('</html>\n');
	picWin.document.close();	
}
/***************************************************************************/
function picWrite(nFile, nCaption, nCopy, nWrite, nWide, nHigh)
{	if(nWide <= 150)nWide=150;
	if(nHigh <= 150)nHigh=150;
	picWin = window.open('','Demo','top=10,left=10,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width='+ nWide +',height='+ nHigh + 30);
	picWin.document.write('<html>\n\n');
	picWin.document.write('<head>\n');
	picWin.document.write('<title>' + nCaption + '&copy;' + nCopy + '</title>\n');
	picWin.document.write('<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">\n');
	picWin.document.write('<meta NAME="Author" CONTENT="Sam Rogers">\n');
	picWin.document.write('<link REL=STYLESHEET HREF="http://www.scrgeek.com/cssPages.css" TYPE="text/css">\n\n');
	picWin.document.write('<script language="JavaScript">\n');
	picWin.document.write("{  IE5=NN4=NN6=false\n");
	picWin.document.write("   if(document.all)IE5=true;\n");
	picWin.document.write("   else if(document.getElementById)NN6=true\n");
	picWin.document.write("   else if(document.layers)NN4=true\n");
	picWin.document.write("   function autoSize()\n");
	picWin.document.write("   {  if(IE5) self.resizeTo(document.images[0].width+10,document.images[0].height+20+70)\n");
	picWin.document.write("   	else if(NN6) self.sizeToContent()\n");
	picWin.document.write("   	else top.window.resizeTo(document.images[0].width,document.images[0].height+20+70)\n");
	picWin.document.write("   	self.focus()\n");
	picWin.document.write("   }\n");
	picWin.document.write("}\n");
	picWin.document.write('</script>\n');
	picWin.document.write('</head>\n\n');
	   
	picWin.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 onLoad=javascript:autoSize();>\n');
	picWin.document.write('<center>\n');
	picWin.document.write('<table cellpadding=0 cellspacing=0 border=0>\n');
	picWin.document.write("<tr><td><img src='"+nFile+"' border=0 alt='"+nCaption+"'></td></tr>\n");
	picWin.document.write('</table>\n');
	picWin.document.write('<p class="pWriteCenter">');
	picWin.document.write(nWrite);
	picWin.document.write('</center>\n');
	picWin.document.write('</body>\n');
	picWin.document.write('</html>\n');
	picWin.document.close();	
}
/***************************************************************************/
-->
