function SimpleShowPic(strUrl, strTop, strLeft, strWidth, strHeight, strBeforeHtml, strAfterHtml)
{	
	winMain = window.open("", "",
	 "toolbar=no,location=no,directories=no,scrollbars=auto"
	    + ",menubar=no"
		+ ",resizable=yes"
		+ ",status=no"
		+ ",screenX=2"
	 	+ ",screenY=2"
	 	+ ",width=" + strWidth
	 	+ ",height=" + strHeight
		+ ",top=" + strTop
	 	+ ",left=" + strLeft);
	
	winMain.document.write('<HTML><HEAD><TITLE>T & T SPORT</TITLE></HEAD><BODY bgcolor="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" strBeforeHtml><div style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;"><TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0> ');
	
	winMain.document.write("<TR VALIGN=MIDDLE><TD ALIGN=CENTER><IMG SRC=" + strUrl + " BORDER=0 OnClick=self.close() strAfterHtml></TR></TD></TABLE> ");
	
	winMain.document.write('</div></BODY></HTML> ');

	winMain.document.close();
}	

