now = new Date()
pstyles = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="../printable.css">'

//printable view script
//idvalue is ID for element to export to print; cssString is text string to embed for style; ttl is title to print at the top
function printable(idvalue, cssString, ttl) {
	var printWin=window.open("","pwin",'toolbar=1,location=1,menubar=1,scrollbars=1,width=640,height=480,resizable=1,top=20,left=20')
	var content = document.getElementById(idvalue)
	printWin.document.write('<HTML><HEAD>' + cssString + '</HEAD><BODY><H3>' + ttl +'</H3>' + 
		content.innerHTML + "<DIV CLASS='footnote'>Printed on " + (now.getMonth()+1)+'/'+now.getDate()+'/'+now.getYear() 
		+ ".<BR><I>www.theneonweb.com</I>.</DIV></BODY></HTML>")
	printWin.document.close()
}