<!-- hide me


function windowframe(img_num,width,height,title)
	{
	var twidth=width+100;
	var theight=height+100;
	var wwidth=width+250;
	var wheight=height+220;
	var openstr='scrollbars,resizable,width='+wwidth+',height='+wheight;

	newwindow=window.open("","",openstr);
	newdocument=newwindow.document;
	newdocument.write('<html>\n<head>\n<title>Gallery Image</title>\n</head>\n<body background="background.jpg">\n');
	newdocument.write('<I><B>click on picture to close window</B></I><div align=right><b>Image '+img_num+'</b></div>\n');
	newdocument.write('<center><table BORDER=5 CELLSPACING=5 COLS=1 WIDTH="'+twidth+'" HEIGHT="'+theight+'" BGCOLOR="#000000" BORDERCOLOR="#808080" BORDERCOLORLIGHT="#C0C0C0" BORDERCOLORDARK="#404040" >');
	newdocument.write('<tr>\n<td ALIGN=CENTER VALIGN=CENTER><a href="#" onclick="self.close()"> <img SRC="images/'+img_num+'.jpg" BORDER=2></td>\n</tr></a>');
	newdocument.write('</table><font size=+1>'+title+'</font></center>\n');
	newdocument.writeln ("<form><div align=right>")
	newdocument.write ("<input type='button' value='Close' ")
	newdocument.writeln ("onclick='self.close()'>")
	newdocument.writeln ("</div></form>")
	newdocument.write('</body>\n</html>\n');
	newdocument.close();
	}

// end hide -->



