var pay_win = null;
var pay_win_x = 0;
var pay_win_y = 0;
function justPay()
	{
	width = 540;
	height = screen.height/2;
	pay_win_x = (screen.width-width)/2;
	pay_win_y = (screen.height-height)/2;
	if (pay_win == null || pay_win.closed == true) {
		pay_win = window.open('/ccard2/pay.php', 'pay_win', 'scrollbars=yes,status=yes,location=no,hotkeys=no,resizeable=no,width=' + width + ',height=' + height);
		}

	setTimeout("movePay()", 500);
	}

function movePay()
	{
	if (pay_win == null || pay_win.closed == true) {
		justPay();
		}
	else {
		pay_win.window.moveTo(pay_win_x, pay_win_y);
		pay_win.window.focus();
		}
	}
