var N=0;
var WarningTxt=new Array();
WarningTxt[0]=	'Like what you see?\n\n'+
				'You’ll like the representation even more!\n'+
				'Call Us Today at 1 (866) NEED-LTD\n'+
				'or complete the Quick Contact form\n'+
				'along the right side.';
WarningTxt[1]=	'Need us to stomp an insurer?\n\n'+
				'Call Us Today at 1 (866) NEED-LTD\n'+
				'or complete the Quick Contact form\n'+
				'along the right side.';
WarningTxt[2]=	'Need us to stomp Social Security?\n\n'+
				'Call Us Today at 1 (866) NEED-LTD\n'+
				'or complete the Quick Contact form\n'+
				'along the right side.';
WarningTxt[3]=	'Need somebody to fight for your disability benefits?\n\n'+
				'Call Us Today at 1 (866) NEED-LTD\n'+
				'or complete the Quick Contact form\n'+
				'along the right side.';


function show_alert() { var r=Math.floor(Math.random()*4); if (!N) window.alert(WarningTxt[r]); N++; } 
window.setInterval('show_alert()',1000*30);


