//Tests for cookies enabled\existance
var testcookie
var random
	random = Math.floor(Math.random()*3876);
	testcookie = 'test'+ escape('novalue')+random;

	document.cookie=testcookie;

if (document.cookie.length==0 || document.cookie.length==null)	
{
	document.write('<div style="position:absolute; left:1px; top:1px; z-index:97; width:1600px; height:1400px;' +
						'background:#cccbcb; filter:alpha(opacity=75); moz-opacity:.75; opacity:.75;">&nbsp;</div>' +
						'<div style="position:absolute; top:46px; left:46px; width:590px; height:295px; z-index:98;' + 
						'background:#000000; filter:alpha(opacity=35); moz-opacity:.35; opacity:.35;">&nbsp;</div>' +
						'<div style="position:absolute; top:25px; left:25px; width:600px; height:285px; z-index:99; padding:10px; border:2px #000000 solid;' +
						'background:#2a7406; font-family:trebuchet MS, verdana, helvetica, sans-serif; font-size:14pt; color:white;">' +
						'<strong style="border-bottom:6px #0b3f05 dotted;">Important note from <em>www.securianselect.com</em></strong>' +
						'<div style="font-family:trebuchet MS, verdana, helvetica, sans-serif;font-size:11pt;color:white;padding-top:10px;">' +
						'Thank you for visiting www.securianselect.com. We have detected that your computer or&nbsp;' +
						'browser settings are not allowing <strong>cookies</strong>.&nbsp;' +
						'Please do not proceed until you are able to change this.<br><br></div>' +
						'<strong style="border-bottom:6px #0b3f05 dotted;">How to change:</strong>' +
						'<diV style="font-family:trebuchet MS, verdana, helvetica, sans-serif;font-size:11pt;color:white;padding-top:10px;">' +
						'Usually, this is a setting within your internet browser, but in some cases, this can also be caused by personal firewalls,&nbsp;' +
						'internet accelerators, internet privacy programs, anti-spyware programs, or anti-virus programs that include internet monitoring features.' +
						'<br><br>For more information, including explanations of cookies and javascript, <br>visit ' +
						'<a href="http://www.securianselect.com/help" target="_blank" style="color:darkblue; font-size:11pt;">' +
						'<strong>www.securianselect.com/help</strong></a></div></div>');

}
else	
{
	if (document.cookie.indexOf(testcookie)>=0)	
		{
		document.cookie="";
		}
}
