	function openLink(hText,mText)
		{
			var nWindow=window.open("","ChildWindow","width=350,Height=400,scrollbars")
//			nWindow.document.write("<html><head>");
//			nWindow.document.write("<style>");
//			nWindow.document.write("body{BACKGROUND-COLOR:#FCFFFB;FONT-FAMILY: Verdana, Helvetica, sans-serif;FONT-SIZE: 9pt;color: #527c4d;}")
//			nWindow.document.write("</style></head>");
			nWindow.document.write("<body topmargin=0 leftmargin=0>")
			nWindow.document.write("<table border=0 cellspacing=1 style='border-collapse: collapse' bordercolor='#111111' width='100%'")
			nWindow.document.write(" style='BACKGROUND-COLOR:FCFFFB;FONT-FAMILY: Verdana, Helvetica, sans-serif;FONT-SIZE: 9pt;color: 527c4d;'>")
			nWindow.document.write("<tr>")
			nWindow.document.write("<th width='100%' align='center' bgcolor='#F1ECD5' height=36><font color=green><b>" + hText.toUpperCase() + "</b></font></th>")
			nWindow.document.write("</tr>")
			//nWindow.document.write("<td width='100%'>")
			nWindow.document.write(mText);
			nWindow.document.write("</table>");
//			nWindow.document.write(</body></html>);
			nWindow.document.title=hText;
			return false;
		}
		
	/*function openPrintWindow1(printStr){
	var nWindow1;
			nWindow1=openPrintWindow(printStr);
			alert("");
			nWindow1.document.close();
			nWindow1.print();
			
	}*/
	
	function openPrintWindow(printStr)
		{
			//day = new Date();
			//id = day.getTime();
			//URL="Print.html"
			var nWindow ;
			nWindow=window.open("Print.htm","ChildWindow","width=500,Height=500,scrollbars,resizable");
			//nWindow= eval("page" + id + " = window.open(URL, '" + id + "','toolbar=0,scrollbars=1');");
			nWindow.document.write("<head><link rel='stylesheet' href='Styles.css'></head>");
			nWindow.document.write("<body topmargin=0 leftmargin=0>")
			nWindow.document.write("<form id='form1' name='form1'>")
			nWindow.document.write("<table border=0 cellspacing=1 style='border-collapse: collapse' bordercolor='#111111' width='100%'")
			nWindow.document.write(" style='BACKGROUND-COLOR:FCFFFB;FONT-FAMILY: Verdana, Helvetica, sans-serif;FONT-SIZE: 9pt;color: 000000;'>")
			nWindow.document.write(printStr)
			nWindow.document.write("</table><div id='divPrint' align='center'>")
			nWindow.document.write("<input type='button' value='Print This Page' onClick='divPrint.style.visibility=\"hidden\";window.document.close();window.print();divPrint.style.visibility=\"\"' class=\"ergoButton\" /></div>")
			nWindow.document.write("</form>")
			nWindow.document.title="Print"
			//nWindow.print();
			//return nWindow;
			return true;
		}
	