How can I make Fixed frames?

admin

Administrator
Staff member
I want to make fixed frames. What should I add?

Also, it doesn't show any attributes(Navigation tool bar, menu bar,and etc.)
What should i add in this script?


<!-- Begin
percent = "10%";
function frameBranding(actualurl, brandingurl, frametype) {
var framewin = window.open("","brandingframe","");
with (framewin.document) {
write("<html><frameset " + frametype + "=" + percent + ",*>");
write("<frame src=http://www.webdeveloper.com/forum/archive/index.php/" + brandingurl + ">");
write(" <frame src=" + actualurl + ">");
write("</frameset></html>");
}
return false;
}





-------
Help ?

Thank you.::confused:
 
Back
Top