
function ShowProgress(){
	strAppVersion = navigator.appVersion;
	if(strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE') + 5,1) > 4){
		winstyle = "dialogWidth=400px;dialogHeight=150px;center:yes";
		window.showModelessDialog("/korea/inc/show_progress.asp?nav=ie",null,winstyle);
	}else{
		winpos = "left=" + ((window.screen.width-380)/2) + ",top=" + ((window.screen.height-110)/2);
		winstyle = "width=400,height=110,status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=no,copyhistory=no," + winpos;
		window.open("/korea/inc/show_progress.asp",null,winstyle);
	}
	return true;
}




