// JavaScript Document
function onlineNotification(product, insurer, newURL) {
newwin = window.open('','','top=150,left=150,width=300,height=300');
if (!newwin.opener) newwin.opener = self;
with (newwin.document)
{
open();
write('<html>');
write('<head>');
write('<link href="/includes/writer_styles.css" rel="stylesheet" type="text/css" />');
write('<link href="/includes/style.css" rel="stylesheet" type="text/css" />');
write('<script language="JavaScript">function updateParent(newURL){opener.document.location= newURL}</script>');
write('<title>'+product+'</title>');
write('</head>');
write('<body bgcolor=FFFFFF ><form name="notificationForm"><span class="interiorHead2">'+product+'</span><br><table width="100%" height="5"  border="0" cellpadding="0" cellspacing="0"><tr><td class="orangeDivider"></td></tr></table><br>');
write('<P>'+product+' arranged by Marsh is underwritten by '+insurer+'.</P><P>By clicking the get a quote button below you will be redirected to the '+insurer+' website to obtain an instant quotation, immediate cover and make a payment all in one visit</p><p>Marsh Ltd and '+insurer+' are authorised and regulated by the Financial Services Authority</P>');
write('<p><table width="100%" height="30" border="0" cellpadding="0" cellspacing="0" class="orangeDivider"><tr><td width="50%" height="30">&nbsp;</td><td width="20%" align="center" valign="middle"><img src="/images/closeBtn.jpg" onClick="window.close()" width="50" height="18" /></td><td width="20%" align="center" valign="middle"><img src="/images/quote_btn.jpg" onClick="javascript: updateParent('+newURL+')" width="79" height="18" border="0"/></td><td width="10%" align="center" valign="middle"></td></tr></table>')
write('</center></form></body></html>');
close();
   }
}

// end -->