function newWindow(picname)
	{
	newWin= open("", "displayWindow", "width=260, height=379, status=no, toolbar=no, menubar=no");
	newWin.document.open();
	newWin.document.write("<html><head><title>Synergy :: Success Stories</title></head><body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><a href='#' onClick=window.close()><img src=\""+picname+"\" width='260' height='379' alt='close the window' border='0'></a></body></html>");
	newWin.document.close();
	newWin.focus();
	return false;
	}