function openpopup(cPicture,nWidth,nHeight,nBorder)
	{
	NewWindow=window.open("","NewOne","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=no,resizable=no,top=150,left=150");
	NewWindow.document.write ("<html><head><title>ST Impress</title></head><body style='padding: 0; margin: 0;'><img src='"+cPicture+"' alt='' border='0' onClick='javascript:window.close();'></body></html>");
	NewWindow.document.close();
	return false;
	}

