function Wait() {
	var w = 480, h = 340;
	if (document.all || document.layers) {
	 w = screen.availWidth;
	 h = screen.availHeight;
	}
	var popW = 200, popH = 100;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open('wait.phtml','popup','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
}
function ShowCCHelp() {
	var w = 480, h = 340;
	if (document.all || document.layers) {
	 w = screen.availWidth;
	 h = screen.availHeight;
	}
	var popW = 400, popH = 400;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open('cchelp.phtml','popup1','width=' + popW + ',height=' + popH + ',scrollbars=yes,top=' + topPos + ',left=' + leftPos);
}
function ShowHelp() {
	var w = 480, h = 340;
	if (document.all || document.layers) {
	 w = screen.availWidth;
	 h = screen.availHeight;
	}
	var popW = 400, popH = 400;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open('help.phtml','popup2','width=' + popW + ',height=' + popH + ',scrollbars=yes,top=' + topPos + ',left=' + leftPos);
}
function OpenCCWindow() {
	var w = 480, h = 340;
	if (document.all || document.layers) {
	 w = screen.availWidth;
	 h = screen.availHeight;
	}
	var popW = 800, popH = 470;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;
	window.open('about:blank','CC','width=' + popW + ',height=' + popH + ',scrollbars=yes,status=yes,location=no,directories=no,resizable=no,top=' + topPos + ',left=' + leftPos);
}
