function openWindow(iWidth, iHeight, url, title) {
	var opts = "width=" + iWidth + ",height=" + iHeight;
	var newWindow = window.open(url, '', opts);
	newWindow.focus();
	
	return false;
}