function WMReloadPage(init) { 
	if (init==true) with (navigator) {
		if ((appName=="Netscape") && (parseInt(appVersion)==4)) {
    		document.WMpgW=innerWidth; 
    		document.WMpgH=innerHeight; 
    		onresize=WMReloadPage; 
    	}
    } else if (innerWidth!=document.WMpgW || innerHeight!=document.WMpgH) {
    	location.reload();
    }
}

WMReloadPage(true);

function adapt_styles() {

	var body10     	= 11;
	var body11		= 11;
	var body9     	= 9;

	var NS4 = (document.layers) ? 1 : 0;
	var IE4 = (document.all) ? 1 : 0;

	var isMac = (navigator.userAgent.indexOf('Mac') != -1);
	var isPC  = !isMac;
		
	if (isPC && NS4) {
		body9 		= 10;
		body10		= 12;
		body11		= 12;
	}	
		
	
	var s = '<style type="text/css">' + 
	'.body9 { font-size: '+body9+'px; }\n'+
	'.body10 { font-size: '+body10+'px; }\n'+
	'p { font-size: '+body10+'px; }\n'+
	'.body11 {font-size: '+body11+'px; }\n'+
	'</style>';
	if (navigator.appVersion.indexOf('3.') != -1) {s='';}
	return s;
}


function openBrWindow() { //v1.0
	
	var temp = window.open("/vclass-docs/copyright_pop.html", "Virgin", "toolbar=no,location=no,directories=no,scrollbars=no,resizable=no,width=330,height=280")

}