/********** The standard disclamer for the tax calc programs ********************/


function disclamer()
{
var disstring;

    disWindow = window.open('','Note','toobar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=330,height=250');

	if (!disWindow.opener)
	{
		disWindow.opener = window
	}


     distring = "<HTML><TITLE>1040A Income Tax Calculator Disclamer</TITLE><BODY BGCOLOR='Aqua'>"
     distring += "<CENTER>"
     distring += "<TABLE BORDER='0'>"
     distring += "<TR><TD>"
	   distring += "This calculator should only be used to assist the user in checking "
		 distring += "mathematical calculations when preparing income tax returns.  The calculator "
		 distring += "does not ask sufficient questions to verify that the user has filled out the form "
		 distring += "correctly or that the user is even eligible to fill out this form.  WE MAKE NO "
		 distring += "GUARANTEES THAT THE CALCULATOR WILL CALCULATE AN ACCURATE AMOUNT.  " 
		 distring += "The income tax calculator is a simple calculator that does not take into account AMT, passive "
		 distring += "loss or many other tax matters.  So, have fun with the calculator but "
		 distring += "don't rely on it to prepare your return! That is what tax prepares are for..." 
     distring += "</TABLE>" 

     distring += "<FORM><INPUT TYPE='button' NAME='closeBtn' VALUE='Close' onclick='window.close()'></FORM>" 
     distring += "</CENTER>" 
     distring += "</BODY></HTML>"

     disWindow.focus()
     
     setTimeout("disWindow.document.write(distring)",500)	//stop strange error one second... window
     disWindow.document.close()



}

