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

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

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