function SimpleShowTable(strTableHtml, strTop, strLeft, strWidth, strHeight, strBeforeHtml, strAfterHtml)
{	
	winMain = window.open("", "",
	 "toolbar=no,location=no,directories=no,status=no"
	    + ",menubar=no"
		+ ",scrollbars=auto"
		+ ",resizable=yes"
		+ ",screenX=0"
	 	+ ",screenY=0"
	 	+ ",width=" + strWidth
	 	+ ",height=" + strHeight
	 	+ ",top=" + strTop
	 	+ ",left=" + strLeft);
	
	
	winMain.document.write("<HTML><HEAD><TITLE>www.viris-kerteszet.hu</TITLE></HEAD> ");
	
	winMain.document.write("<frameset> ");
	
	winMain.document.write("<frame src='"+strTableHtml+"'> ");
	
	winMain.document.write("</frameset> ");
	
 	<!-- winMain.document.write("<tr align="center"><td colspan=3><a href="javascript:OnClick=self.close()"><img border=0 src=images/NC/btn_close.gif></a></td></tr> ");  -->

	winMain.document.write("</HTML> ");
		
}	