
function OpenWindow(width, height, url, title, flag) {
	var posX = (screen.availWidth-width) / 2;
	var posY = (screen.availHeight-height) / 2;
	var winOption = "toolbar=no,location=no,status=no,menubar=no,dependent=no,hotkeys=no,directories=no";

	if ( flag == 0 ) { //Scrollbar Off
		winOption += ",scrollbars=no,resizeable=no,width=" + width + ",height=" + height + ",left=" + posX + ",top=" + posY;
	} else {	// Scrollbar On
		winOption += ",scrollbars=yes,resizeable=no,width=" + width + ",height=" + height + ",left=" + posX + ",top=" + posY;
	}
	var winObj = window.open(url, title, winOption);
	winObj.focus();
}
