// Pop-up windows
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function win_open(win_name, where, type_val) {
	var win_type = new Array();

	
	// Exchange Policy
	win_type[0]="menubar=yes,scrollbars=yes,toolbar=no,resizable=yes,width=600,height=460";	
	// Brims property specs
	//win_type[1]="menubar=yes,scrollbars=yes,resizable=yes,width=650,height=550";
	// Finance pop up
	//win_type[2]="menubar=yes,scrollbars=yes,toolbars=yes,resizable=yes,width=700,height=450";


	
	win_name = window.open(where, win_name, win_type[type_val]);
	win_name.focus();
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);