function openWindow(url, name, width, height, moreOptions) {
	var allOptions;
	//alert(url);
	allOptions = "width=" + width + ", height=" + height;
	
	if (moreOptions != null && moreOptions.length > 0) allOptions += "," + moreOptions;
	var newWin = window.open(url, name, allOptions);
	
	newWin.focus();

	//sendReq(url);
	//showResult();

}