<!-- Original:  Grace Li (gl105@yahoo.com) -->
<!-- Web Site:  http://www.sysu.net/gl105 -->
<!-- Modified By:  Ronnie T. Moore, Editor -->

<!-- Begin
size = "65";
function frameBranding(actualurl, brandingurl, frametype) {
var framewin = window.open("","brandingframe");
with (framewin.document) {
write("<html><frameset " + frametype + "=" + size + ",*>");
write("<frame src=" + brandingurl + " scrolling=no>");
write(" <frame src=" + actualurl + " scrolling=yes>");
write("</frameset></html>");
   }
return false;
}
//  End -->