<!--
/* frame buster - code by Gordon McComb */
	setTimeout ("changePage()", 3000)

	function changePage() {
		if (self.parent.frames.length != 0)
			self.parent.location=document.location;
		}
/*
function popup() {
	window.open('contact.html','ForenSec Contact Form','width=410,height=425,scrollbars=no,resizable=no');
	}
*/

function dateprint() {

dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
monName = new Array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
now = new Date

document.write (dayName[now.getDay()] +",&nbsp;"+ now.getDate() +"&nbsp;"+ monName[now.getMonth()] +"&nbsp;"+ now.getFullYear())
	}
	
/* <A HREF='javascript:popup();'>Popup</A>
<a href="javascript:window.self.close();">Close this window</a> */
//-->
//-->