<!--
function onlinebanking(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=600,height=450,scrollbars=no,toolbar=no,status=no,resizeable=no,top=0,left=0,right=0,bottom=0');
return false;
}
//-->

<!--
function onlinedemo(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=700,height=550,scrollbars=no,toolbar=no,status=no,resizeable=no,top=0,left=0,right=0,bottom=0');
return false;
}
//-->