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){

	/* initialize variables*/
	var file = filename;

	/* determine browser */
	var bName = navigator.appName;
	var bVer = parseFloat(navigator.appVersion);

	if (bName == "Netscape") 
		NewWindow = window.open(file, "WEQ","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,copyhistory=0,width=500,height=500,");
	else  
		NewWindow = window.open(file, "WEQ","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizeable=0,copyhistory=0,width=510,height=510,");
}

