// JavaScript Document that creates a frame page with a branded header.
<!-- Begin
size = "59";
function frameBranding(actualurl, brandingurl, frametype) {
var winframe = window.open("","brandingframe");
with (winframe.document) {
write("<html><frameset " + frametype + "=" + size + ",* border=0>");
write("<frame name=header scrolling=no noresize src=" + brandingurl + " marginheight=1>");
write("<frame name=body noresize src=" + actualurl + " marginheight=1>");
write("</frameset><noframes>The link that you are following will take you to a link outside the DRDC location.  To continue click <A HREF="+ actualurl + ">here</A>.</noframes></html>");
   }
return false;
}
//  End -->
//<!-- Place code below into appropriate <a> tag -->
//<!-- here is an example-->
//<a target="_new" href="URL" onClick="return frameBranding('URL', 'HEADER URL', 'rows');">TEXT (ROW BRANDING)</a>
//<p>
//<a target="_new" href="URL" onClick="return frameBranding('URL', 'HEADER URL', 'cols');">TEXT (COL BRANDING)</a>
 

