// JavaScript Document

function showResponseWin(URL,width,height) {
	if (typeof width === 'undefined') width = 525;
	if (typeof height === 'undefined') height = 425;

	aWindow=window.open(URL,"thewindow","scrollbars=0,width=" + width +",height=" + height);
}
