
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;
};


function newwindow(filename){var file=filename;var bName=navigator.appName;var bVer=parseFloat(navigator.appVersion);if(bName=="Netscape")
NewWindow=window.open(file,"WS","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,copyhistory=0,width=700,height=550,");else
NewWindow=window.open(file,"WS","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,copyhistory=0,width=710,height=560,");}
