function ShowTableInDocument(varTableName,varDescription)
{
	
	//alert('In ShowTableInDocument:' + varTableName );
	
	var myTable = document.getElementById(varTableName).innerHTML; 
	myWindow = window.open("", "tinyWindow", '');
	myWindow.document.write("<html>");
	myWindow.document.write("<HEAD>");
	myWindow.document.write("<title>DevList Home Page</title>");
	myWindow.document.write("<LINK href='SiteStyleSheet.css' type='text/css' rel='stylesheet'>");
	myWindow.document.write("</HEAD> ");
	myWindow.document.write("<body>" ); 
	myWindow.document.write("<Table class='ListTable' width='100%' >" ); 
	myWindow.document.write("<tr><td colspan='2'><font FACE='Arial, Helvetica, Geneva' SIZE='+1'>" + varDescription + "</font></td></tr>" ); 
	myWindow.document.write("<tr><td>" ); 
	myWindow.document.write(myTable);
	myWindow.document.write("</tr></td>" ); 
	myWindow.document.write("<tr><td><b>www.devlist.com</b></tr></td>" ); 
	myWindow.document.write("</Table>" ); 
	myWindow.document.write("</body>" ); 
	myWindow.document.write("</html>" ); 
	myWindow.document.close(); 
}