//openWinCenter('URL','id','width','height',scrollFlag[true/false]');
function openWinCenter(url,id,w,h,scrollFlag) {
	
	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;
	
	if(scrollFlag){
		
		if(navigator.appName== "Microsoft Internet Explorer"){ 
			
			w=w+16;
			
		}
		
		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
		
	}else{
	
		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=no");
	
	}
	
}

function openWinCenter02(url,id,w,h,scrollFlag) {
	
	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;
	
	if(scrollFlag){
		
		if(navigator.appName== "Microsoft Internet Explorer"){ 
			
			w=w+16;
			
		}
		
		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes,menubar=yes,naigationbar=yes");
		
	}else{
	
		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=no");
	
	}
	
}