function openWindows(obj,w,h){
	var   width   =   (screen.width-w)/2;
	var   height  =   (screen.height-h)/2;
	//var   status   =  "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,top="+height+",left="+width+",width="+w+",height="+h;
	
	//--2008/11/21,視窗可以resize
	var   status   =  "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top="+height+",left="+width+",width="+w+",height="+h;
	var   newwin=window.open(obj,"_blank",status);  
	if(!newwin){
		alert('請關閉封鎖快顯視窗功能, 以利正常使用');
		return  false;
  	}
}

function openToolbarWindows(obj,w,h){
	var   width   =   (screen.width-w)/2;
	var   height  =   (screen.height-h)/2;
	var   status   =  "toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,top="+height+",left="+width+",width="+w+",height="+h;

	var   newwin=window.open(obj,"_blank",status);  
	if(!newwin){
		alert('請關閉封鎖快顯視窗功能, 以利正常使用');
		return  false;
  	}
}