function onlreg()
{
	document.write("<select name='QuickLinks' class='select rhsselect' onchange='popup_quicklinks(this.value)'>");
	document.write("<option selected='selected' value='0'>Quick Access</option>");
	//document.write("<option value='../tools/index.html'>Tools &amp; calculators</option>");
	document.write("<option value='../mobile/index.html'>Mobile Banking services</option>");
	document.write("<option value='0'>Netbanking</option>");
	document.write("<option value='https://netbanking.abnamro.co.in/web/L001/images/help/netbanking_faq.html'>&nbsp;&nbsp;FAQs</option>");
	document.write("<option value='../directbankingservices/demo.html'>&nbsp;&nbsp;How to register Demo</option>");
	document.write("<option value='../creditcard/rewards_catalog.htm'>Rewards catalogue</option>");
	//document.write("<option value='../creditcard/smart_bill_pay.htm'>Smart bill pay</option>");
	//document.write("<option value='../loans/index.html'>Loans</option>");
	document.write("<option value='../directbankingservices/special_offers.html'>Special Offers – Debit Cards</option>");
	document.write("<option value='../creditcard/special_offers.html'>Special Offers – Credit Cards</option>");
	document.write("</select>");
}

function popup_quicklinks(linkname)
{
	//alert(QuickLinks.selectedIndex);
	if(linkname!=0)
		{
			if (linkname=='../directbankingservices/demo.html')
				{		
					window.open(linkname,'demo','height=500,width=800,scrollbars=yes');
					QuickLinks.selectedIndex=0;
				}
			else if(linkname=='https://netbanking.abnamro.co.in/web/L001/images/help/netbanking_faq.html')
				{
				window.open(linkname,'demo','height=350,width=600,resizable=yes,scrollbars=yes');
				QuickLinks.selectedIndex=0;
				}
				else
				{
					document.location=linkname;
				}
		}
}