//sub_window pop-up
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'toolbar=yes, width=630, height=630, scrollbars=yes');
return false;
}
//-->

//Must add the below html in your page to have a clickable link.....
//<A HREF="whatevernamehere.html" onClick="return popup(this, 'notes')">Text link here</A>

