<!--
<!-- hide

var platform;
var browser;
var window_size;

if(navigator.userAgent.indexOf('Win') == -1) {
	platform = 'MAC'; 
} else { 
	platform = 'WIN'; 
} 

if(navigator.appName.indexOf('Netscape') == -1) {
	browser = 'IE'; 
} else { 
	browser = 'NN';
}

var mode;
var w = screen.width - 12;
var h = screen.height - 31;
	
function openWindow(arg, file_path){

    mode = arg;
	
	if(platform == 'WIN' && browser == 'IE'){
		
		if(mode == 1) {	
			newwin=window.open(file_path,"main_win","fullscreen=1,scrollbars=0,resizable=yes,location=no,menubar=no,status=no");
			newwin.focus();
		}
		else if (mode == 0){
			w = screen.width;
			h = screen.height - 25;
	
			newwin=window.open(file_path,"main_win","scrollbars=0,resizable=yes,location=no,menubar=no,status=no,left=0,top=0");
			newwin.resizeTo(w,h);
			newwin.focus();
		}
		
	}else if(platform == 'MAC' && browser == 'IE'){
		h = screen.height - 35;	
		newwin=window.open(file_path,"main_win","scrollbars=0,resizable=yes,location=no,menubar=no,status=no,left=0,top=0");
		newwin.resizeTo(w,h);
	}else if(platform == 'MAC' && browser == 'NN'){
		h = screen.height - 54;
		window_size = "width=" + w + ",height=" + h +",innerWidth=" + w + ",innerHeight=" + h;
		newwin=window.open(file_path,"main_win","scrollbars=0,resizable=yes,location=no,menubar=no,status=no," + window_size);
		newwin.moveTo(0,0);
	}else if( platform == 'WIN' && browser == 'NN'){
		window_size = "width=" + w + ",height=" + h +",innerWidth=" + w + ",innerHeight=" + h;
		newwin=window.open(file_path,"main_win","scrollbars=0,resizable=yes,location=no,menubar=no,status=no," + window_size);
		newwin.moveTo(0,0);
	}		
}
// show -->

<!--
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
//-->