function rndDYK()
{
	var dyk = new Array (
		"*** HFP offers E&O for companies that create technology as well as for companies that use it ***",
		"*** In December, 2000, the EEOC issued new guidelines clarifying how the Americans with Disabilities Act of 1990 (ADA) applies to contingent workers (ie: temps) ***",
		"*** The Hartford was Founded in 1810 ***",
		"*** HFP Miscellaneous Professional Liability Policy extends coverage to claims arising out of personal injury ***",
		"*** HFP publishes a risk management newsletter, called \"Sidebar\", for our insured law firms ***",
		"*** HFP is ready to work with you on that special MPL account ***",
		"*** Hartford has an A.M. Best Rating of A+ ***",
		"*** Hartford Financial Products has major operational offices in New York City, Boston and Chicago as well as branch offices in Kansas City, Denver and Atlanta ***",
		"*** You can view/print HFP policies and applications online ***",
		"*** Hartford Financial Products is the sponsored insurance company for the Federation of Defense & Corporate Counsel ***",
		"*** There are at least 25 reasons to come to us with your E&O needs ***",
		"*** The majority of claims are managed from HFP's home office in New York ***",
		"*** HFP's Middle Market can offer more than just Directors & Officers Liability ***"
	);
	var dykNoScroll = new Array (
		"HFP offers E&O for companies that create technology",
		"In 2002, the EEOC issued new ADA guidelines for contingent workers",
		"The Hartford was Founded in 1810",
		"HFP MPL Policy covers personal injury claims",
		"HFP publishes a newsletter for our insured law firms",
		"HFP is ready to work with you on that special MPL account",
		"Hartford has an A.M. Best Rating of A+",
		"HFP has major operational offices in New York City, Boston and Chicago",
		"You can view/print HFP policies and applications online",
		"HFP is the sponsored insurance company for the FDCC",
		"There are at least 25 reasons to come to us with your E&O needs",
		"The majority of claims are managed from HFP's home office in New York",
		"HFP's Middle Market offers more than just D&O Liability"
	);

	var idx = Math.floor(Math.random() * dyk.length);
	var mImg = "<a href=\"javascript:popUpDYK("+idx+")\"><img src=\"../images/dyk/dyk2.gif\" width=\"115\" height=\"12\" alt=\"\" border=\"0\"></a>";
	var mTxtB = "<a href=\"javascript:popUpDYK("+idx+")\"><marquee onmouseover=\"scrollAmount=2\" onmouseout=\"scrollAmount=4\" scrollAmount=4 scrollDelay=60 width=\"383\" height=\"10\" style=\"font-family: Verdana; font-size: 9px; color: cccccc; cursor: help\">";
	var mTxtE = "</marquee></a>";

	if (document.getElementById)
	{
		document.getElementById("marqueeImg").innerHTML = mImg;
		if (window.navigator.userAgent.toLowerCase().indexOf('msie') != -1) {
			document.getElementById("marqueeTxt").innerHTML = mTxtB + dyk[idx] + mTxtE;
		}
		else {
			document.getElementById("marqueeTxt").innerHTML = mTxtB + dykNoScroll[idx] + mTxtE;
		}
	}
}
function popUpDYK(id)
{
	var url = "/diduknow/dykm.jsp?id="+id;
	myWindow = window.open(url, "PopUpWindow", "dependent=yes,status=no,scrollbars=yes,resizable=yes,width=500,height=300,menubar=no,toolbar=no");
}

