function newwindow(image) {
	newWindow = open("","newWindow","width=600,height=450, top=20,left=50");
	newWindow.document.open();
	newWindow.document.write('<title>Lake Artists Society</title><HTML><BODY bgcolor="#6e8597" topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 ONBLUR="self.close()">');
	newWindow.document.write('<IMG SRC='+ image +'>');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
}

function newwindow2(image) {
	newWindow = open("","newWindow","width=550,height=500,top=0,left=20");
	newWindow.document.open();
	newWindow.document.write('<title>Lake Artists Society</title><HTML><BODY bgcolor="#6e8597" leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 ONBLUR="self.close()">');
	newWindow.document.write('<IMG SRC='+ image +'>');
	newWindow.document.write('</BODY></HTML>');
	newWindow.document.close();
}

function openWindow(imageName,imageWidth,imageHeight,alt) {
newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight);
newWindow.document.open();
newWindow.document.write('<HTML><TITLE>Lake Artists Society</TITLE><BODY bgcolor="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0"  onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}






